diff options
Diffstat (limited to 'clang/CodeGen/CodeGenModule.cpp')
| -rw-r--r-- | clang/CodeGen/CodeGenModule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp index afd23c45012..2ce7f4e8371 100644 --- a/clang/CodeGen/CodeGenModule.cpp +++ b/clang/CodeGen/CodeGenModule.cpp @@ -488,8 +488,8 @@ void CodeGenModule::EmitGlobalVar(const FileVarDecl *D) { if (!Init) Init = EmitGlobalInit(D->getInit()); - assert(Init && "FIXME: Global variable initializers unimp!"); - + assert(GV->getType()->getElementType() == Init->getType() && + "Initializer codegen type mismatch!"); GV->setInitializer(Init); // Set the llvm linkage type as appropriate. |

