From 0a249a8ae519ba30e869c66e96b2d2c79d49809f Mon Sep 17 00:00:00 2001 From: Jeffrey Yasskin Date: Thu, 9 Jul 2009 00:52:44 +0000 Subject: [PATCH] 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 --- include/llvm/Support/IRBuilder.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- 2.34.1