summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-04-07 05:59:12 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-04-07 05:59:12 +0000
commitfcbcc0bd51e27484e110e1fef9e7a44d556456cf (patch)
tree1ec6c2b0a489dc60d352ec1ce51c83f779ff9d25
parentfdb76ccfb492c82880ea2d1f7f3d06c8b4d445a1 (diff)
downloadbcm5719-llvm-fcbcc0bd51e27484e110e1fef9e7a44d556456cf.tar.gz
bcm5719-llvm-fcbcc0bd51e27484e110e1fef9e7a44d556456cf.zip
Fix typo.
llvm-svn: 100609
-rw-r--r--llvm/lib/CodeGen/MachineLICM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp
index 35cd6d64215..72f7d4549c8 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -295,7 +295,7 @@ void MachineLICM::HoistRegionPostRA(MachineDomTreeNode *N) {
// If MI is a store to a stack slot, remember the slot. An instruction
// loads from this slot cannot be a LICM candidate.
- if (SkipCheck && TII->isStoreToStackSlot(MI, FI))
+ if (!SkipCheck && TII->isStoreToStackSlot(MI, FI))
StoredFIs.insert(FI);
}
OpenPOWER on IntegriCloud