diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 26df55531a8..f9abafa34c0 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -9066,7 +9066,7 @@ Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {      // the pointer we're loading and is producing the pointer we're storing,      // then *this* store is dead (X = load P; store X -> P).      if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) { -      if (LI == Val && LI->getOperand(0) == Ptr) { +      if (LI == Val && LI->getOperand(0) == Ptr && !SI.isVolatile()) {          EraseInstFromFunction(SI);          ++NumCombined;          return 0; | 

