From: Jeffrey Yasskin Date: Thu, 9 Jul 2009 00:52:44 +0000 (+0000) Subject: Work around an ICE in gcc-4.2.4. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0a249a8ae519ba30e869c66e96b2d2c79d49809f;p=oota-llvm.git Work around an ICE in gcc-4.2.4. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75084 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index 5069ead3914..0fe0c3ce1f6 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -402,7 +402,8 @@ public: } Value *CreateGlobalString(const char *Str = "", const char *Name = "") { Constant *StrConstant = Context.getConstantArray(Str, true); - GlobalVariable *gv = new GlobalVariable(*BB->getParent()->getParent(), + Module &M = *BB->getParent()->getParent(); + GlobalVariable *gv = new GlobalVariable(M, StrConstant->getType(), true, GlobalValue::InternalLinkage,