abort when we lower an initializer to the wrong type, as we currently do for:
char text[] = "string";




git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44752 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/CodeGen/CodeGenModule.cpp b/CodeGen/CodeGenModule.cpp
index afd23c4..2ce7f4e 100644
--- a/CodeGen/CodeGenModule.cpp
+++ b/CodeGen/CodeGenModule.cpp
@@ -488,8 +488,8 @@
   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.