summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2012-02-27 23:20:01 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2012-02-27 23:20:01 +0000
commita235e2d8ad338410e3c9f5d732e4357953e3d82e (patch)
tree7e730eaae10d15ea30e8b3e248b3ef7013472041 /clang/lib/CodeGen/CodeGenModule.cpp
parent465e1375585e9a39c3b4a5a946b01a83e773c600 (diff)
downloadbcm5719-llvm-a235e2d8ad338410e3c9f5d732e4357953e3d82e.tar.gz
bcm5719-llvm-a235e2d8ad338410e3c9f5d732e4357953e3d82e.zip
Hack in a loud error for PR12086. Better than a silent miscompile.
llvm-svn: 151586
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index ddd04a427cb..a3a71b7e523 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -1376,8 +1376,19 @@ CodeGenModule::MaybeEmitGlobalStdInitializerListInitializer(const VarDecl *D,
return 0;
ASTContext &ctx = getContext();
- // Synthesize a fake VarDecl for the array and initialize that.
unsigned numInits = init->getNumInits();
+ // FIXME: This check is here because we would otherwise silently miscompile
+ // nested global std::initializer_lists. Better would be to have a real
+ // implementation.
+ for (unsigned i = 0; i < numInits; ++i) {
+ const InitListExpr *inner = dyn_cast<InitListExpr>(init->getInit(i));
+ if (inner && inner->initializesStdInitializerList()) {
+ ErrorUnsupported(inner, "nested global std::initializer_list");
+ return 0;
+ }
+ }
+
+ // Synthesize a fake VarDecl for the array and initialize that.
QualType elementType = init->getInit(0)->getType();
llvm::APInt numElements(ctx.getTypeSize(ctx.getSizeType()), numInits);
QualType arrayType = ctx.getConstantArrayType(elementType, numElements,
OpenPOWER on IntegriCloud