forked from OSchip/llvm-project
ADd a trivial instcombine: load null -> null
llvm-svn: 12940
This commit is contained in:
parent
0dc099c2b5
commit
6679e46b59
|
@ -2853,7 +2853,10 @@ Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
|
|||
Value *Op = LI.getOperand(0);
|
||||
if (LI.isVolatile()) return 0;
|
||||
|
||||
if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Op))
|
||||
if (Constant *C = dyn_cast<Constant>(Op))
|
||||
if (C->isNullValue()) // load null -> 0
|
||||
return ReplaceInstUsesWith(LI, Constant::getNullValue(LI.getType()));
|
||||
else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C))
|
||||
Op = CPR->getValue();
|
||||
|
||||
// Instcombine load (constant global) into the value loaded...
|
||||
|
|
Loading…
Reference in New Issue