diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-10-29 13:50:18 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-10-29 13:50:18 +0000 |
commit | 818ce488beec3935623a25bfa0026d67e182d6d6 (patch) | |
tree | 554ffcabfb0b7eb77272997b70c29e4b34a8fc65 /lib/Sema/SemaDecl.cpp | |
parent | 90f41303c60195a3c1109c02cf3455d21894e387 (diff) |
Temporary disable the const-object-declaration-without-initializer check, because it depends on linkage-specifier semantics we don't yet have
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 78f0d8f8be..90fe1ee8a8 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -1540,6 +1540,12 @@ void Sema::ActOnUninitializedDecl(DeclTy *dcl) { Var->getName(), SourceRange(Var->getLocation(), Var->getLocation())); +#if 0 + // FIXME: Temporarily disabled because we are not properly parsing + // linkage specifications on declarations, e.g., + // + // extern "C" const CGPoint CGPointerZero; + // // C++ [dcl.init]p9: // // If no initializer is specified for an object, and the @@ -1558,11 +1564,13 @@ void Sema::ActOnUninitializedDecl(DeclTy *dcl) { // FIXME: Actually perform the POD/user-defined default // constructor check. if (getLangOptions().CPlusPlus && - Context.getCanonicalType(Type).isConstQualified()) + Context.getCanonicalType(Type).isConstQualified() && + Var->getStorageClass() != VarDecl::Extern) Diag(Var->getLocation(), diag::err_const_var_requires_init, Var->getName(), SourceRange(Var->getLocation(), Var->getLocation())); +#endif } } |