aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-07-09 00:52:44 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-07-09 00:52:44 +0000
commit0a249a8ae519ba30e869c66e96b2d2c79d49809f (patch)
treecd319eaecb5cbf73230c4cd3085c76c8fd05b3bc
parent885ce84ab8f5ce6e05be96b06b540fe95ee3bfda (diff)
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
-rw-r--r--include/llvm/Support/IRBuilder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h
index 5069ead391..0fe0c3ce1f 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,