From: Nick Lewycky Date: Thu, 25 Jul 2013 02:55:14 +0000 (+0000) Subject: Check that TD isn't NULL before dereferencing it down this path. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b97b1627316ef4a9eb7591ef4f814917ba054ff6;hp=2d680824e3a5272e386aa6c1d2a66676de7899fd;p=oota-llvm.git Check that TD isn't NULL before dereferencing it down this path. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187099 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index 6250cc5ec45..20af15ed008 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp @@ -2783,7 +2783,7 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst, Value *Ptr = PtrArg->stripPointerCasts(); if (GlobalVariable *GV = dyn_cast(Ptr)) { Type *ElemTy = cast(GV->getType())->getElementType(); - if (!Size->isAllOnesValue() && + if (TD && !Size->isAllOnesValue() && Size->getValue().getLimitedValue() >= TD->getTypeStoreSize(ElemTy)) { Invariants.insert(GV); diff --git a/test/Transforms/GlobalOpt/invariant-nodatalayout.ll b/test/Transforms/GlobalOpt/invariant-nodatalayout.ll new file mode 100644 index 00000000000..a2abd52c4e8 --- /dev/null +++ b/test/Transforms/GlobalOpt/invariant-nodatalayout.ll @@ -0,0 +1,17 @@ +; RUN: opt -globalopt -S -o - < %s | FileCheck %s +; The check here is that it doesn't crash. + +declare {}* @llvm.invariant.start(i64 %size, i8* nocapture %ptr) + +@object1 = global { i32, i32 } zeroinitializer +; CHECK: @object1 = global { i32, i32 } zeroinitializer + +define void @ctor1() { + %ptr = bitcast {i32, i32}* @object1 to i8* + call {}* @llvm.invariant.start(i64 4, i8* %ptr) + ret void +} + +@llvm.global_ctors = appending constant + [1 x { i32, void ()* }] + [ { i32, void ()* } { i32 65535, void ()* @ctor1 } ]