forked from OSchip/llvm-project
Avoid crashing if instruction is not part of a loop.
If it is not part of a loop it is obviously invariant wrt to all loops. llvm-svn: 58240
This commit is contained in:
parent
bb026a0c63
commit
450ffd2f3e
|
@ -247,12 +247,13 @@ ConstantRange LoopVR::compute(Value *V) {
|
||||||
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
||||||
|
|
||||||
LoopInfo &LI = getAnalysis<LoopInfo>();
|
LoopInfo &LI = getAnalysis<LoopInfo>();
|
||||||
ScalarEvolution &SE = getAnalysis<ScalarEvolution>();
|
|
||||||
|
|
||||||
Loop *L = LI.getLoopFor(I->getParent());
|
Loop *L = LI.getLoopFor(I->getParent());
|
||||||
if (L->isLoopInvariant(I))
|
if (!L || L->isLoopInvariant(I))
|
||||||
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
||||||
|
|
||||||
|
ScalarEvolution &SE = getAnalysis<ScalarEvolution>();
|
||||||
|
|
||||||
SCEVHandle S = SE.getSCEV(I);
|
SCEVHandle S = SE.getSCEV(I);
|
||||||
if (isa<SCEVUnknown>(S) || isa<SCEVCouldNotCompute>(S))
|
if (isa<SCEVUnknown>(S) || isa<SCEVCouldNotCompute>(S))
|
||||||
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
return ConstantRange(cast<IntegerType>(V->getType())->getBitWidth(), false);
|
||||||
|
|
Loading…
Reference in New Issue