Don't remove volatile loads. Thanks to Duncan for noticing this one.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2008-07-28 20:52:42 +00:00
parent a5d5af985e
commit 80e051dfde

View File

@ -183,7 +183,7 @@ bool DSE::runOnBasicBlock(BasicBlock &BB) {
Instruction* dep = MD.getDependency(S);
DominatorTree& DT = getAnalysis<DominatorTree>();
if (S->getParent() == L->getParent() &&
if (!S->isVolatile() && S->getParent() == L->getParent() &&
S->getPointerOperand() == L->getPointerOperand() &&
( dep == MemoryDependenceAnalysis::None ||
dep == MemoryDependenceAnalysis::NonLocal ||