From cb04ac95998db8e7c98b5bb65e28a3d7343b82ff Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 10 Dec 2007 00:05:55 +0000 Subject: abort when we lower an initializer to the wrong type, as we currently do for: char text[] = "string"; llvm-svn: 44752 --- clang/CodeGen/CodeGenModule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/CodeGen/CodeGenModule.cpp') 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. -- cgit v1.2.3