OSDN Git Service

Fix a bug in the previous checkin that broke 255.vortex
authorChris Lattner <sabre@nondot.org>
Wed, 15 Sep 2004 02:34:40 +0000 (02:34 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 15 Sep 2004 02:34:40 +0000 (02:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16355 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LICM.cpp

index 554b5ec..435bb4b 100644 (file)
@@ -643,7 +643,7 @@ void LICM::PromoteValuesInLoop() {
           LoadValue = LI;
           break;
         } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
-          if (SI->getOperand(1) == LI) {
+          if (SI->getOperand(1) == Ptr) {
             LoadValue = SI->getOperand(0);
             break;
           }