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

llvm-svn: 54144
This commit is contained in:
Owen Anderson 2008-07-28 20:52:42 +00:00
parent db7e5da90e
commit d2cc2655af

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 ||