summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema
diff options
context:
space:
mode:
authorPaul Robinson <paul.robinson@sony.com>2016-07-14 22:22:58 +0000
committerPaul Robinson <paul.robinson@sony.com>2016-07-14 22:22:58 +0000
commit4e0ff9c46b13bc89b00c1e8d3886c7bdd792d3a0 (patch)
tree24492d60be7c5f1f0c294d568a75fff96723c76a /clang/lib/Sema
parent31795c7576b4f329e82dfe97f6730fa40022b0c2 (diff)
downloadbcm5719-llvm-4e0ff9c46b13bc89b00c1e8d3886c7bdd792d3a0.tar.gz
bcm5719-llvm-4e0ff9c46b13bc89b00c1e8d3886c7bdd792d3a0.zip
C does not have inline variables.
Add a few missing tests for related C++ diagnostics. Differential Revision: http://reviews.llvm.org/D22113 llvm-svn: 275493
Diffstat (limited to 'clang/lib/Sema')
-rw-r--r--clang/lib/Sema/SemaDecl.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index c0ccbbf6241..cedd21476c9 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -6178,7 +6178,10 @@ Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
}
if (D.getDeclSpec().isInlineSpecified()) {
- if (CurContext->isFunctionOrMethod()) {
+ if (!getLangOpts().CPlusPlus) {
+ Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
+ << 0;
+ } else if (CurContext->isFunctionOrMethod()) {
// 'inline' is not allowed on block scope variable declaration.
Diag(D.getDeclSpec().getInlineSpecLoc(),
diag::err_inline_declaration_block_scope) << Name
OpenPOWER on IntegriCloud