diff options
author | Amara Emerson <amara.emerson@arm.com> | 2013-11-25 11:24:18 +0000 |
---|---|---|
committer | Amara Emerson <amara.emerson@arm.com> | 2013-11-25 11:24:18 +0000 |
commit | f59125f5bb39ba6b2844b6318d5db5cda5d6d303 (patch) | |
tree | cd052a509bd99f618d5863506f9298e61bf563e4 /llvm/lib/CodeGen/SelectionDAG | |
parent | b021c6fdbd4b670f4a972dd1da7ee36581b3e76a (diff) | |
download | bcm5719-llvm-f59125f5bb39ba6b2844b6318d5db5cda5d6d303.tar.gz bcm5719-llvm-f59125f5bb39ba6b2844b6318d5db5cda5d6d303.zip |
Revert r195599 as it broke the builds.
llvm-svn: 195636
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 805cc9e0f27..c126a53611e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -8692,11 +8692,6 @@ bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) { Index = STn; break; } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) { - if (Ldn->isVolatile()) { - Index = NULL; - break; - } - // Save the load node for later. Continue the scan. AliasLoadNodes.push_back(Ldn); NextInChain = Ldn->getChain().getNode(); |