summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-11-25 18:07:39 +0000
committerBill Wendling <isanbard@gmail.com>2013-11-25 18:07:39 +0000
commitddc3c964657cc0be4994ddfaf056d5ec6bb11e5b (patch)
tree8e387ca91fe34f49c09be1dd18f175ff066a42e6 /lib/CodeGen/SelectionDAG/DAGCombiner.cpp
parent975e958dbc12ba412385b721100fc1c830b0e3ab (diff)
downloadllvm-ddc3c964657cc0be4994ddfaf056d5ec6bb11e5b.tar.gz
llvm-ddc3c964657cc0be4994ddfaf056d5ec6bb11e5b.tar.bz2
llvm-ddc3c964657cc0be4994ddfaf056d5ec6bb11e5b.tar.xz
Merging r195636:
------------------------------------------------------------------------ r195636 | aemerson | 2013-11-25 03:24:18 -0800 (Mon, 25 Nov 2013) | 2 lines Revert r195599 as it broke the builds. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195671 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/DAGCombiner.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 805cc9e0f2..c126a53611 100644
--- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/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();