summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2012-10-25 10:13:58 +0000
committered <ed@FreeBSD.org>2012-10-25 10:13:58 +0000
commitbe7b7f088b806d1ea94647b4427a35dc0ef6daed (patch)
treec7cf2e42166e846ecbead16b0cbf1e94154ebded /contrib/llvm/tools/clang/lib/Sema/Sema.cpp
parent71112b5a8eb3a8cd3f5d49eff9664a32fec42b56 (diff)
downloadFreeBSD-src-be7b7f088b806d1ea94647b4427a35dc0ef6daed.zip
FreeBSD-src-be7b7f088b806d1ea94647b4427a35dc0ef6daed.tar.gz
Pull in r166498 from upstream clang trunk:
Add a new warning -Wmissing-variable-declarations, to warn about variables defined without a previous declaration. This is similar to -Wmissing-prototypes, but for variables instead of functions.
Diffstat (limited to 'contrib/llvm/tools/clang/lib/Sema/Sema.cpp')
-rw-r--r--contrib/llvm/tools/clang/lib/Sema/Sema.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/llvm/tools/clang/lib/Sema/Sema.cpp b/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
index 7f79f0c..6e2de4d 100644
--- a/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
+++ b/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
@@ -648,6 +648,8 @@ void Sema::ActOnEndOfTranslationUnit() {
diag::err_tentative_def_incomplete_type))
VD->setInvalidDecl();
+ CheckCompleteVariableDeclaration(VD);
+
// Notify the consumer that we've completed a tentative definition.
if (!VD->isInvalidDecl())
Consumer.CompleteTentativeDefinition(VD);
OpenPOWER on IntegriCloud