projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
842a06e
)
[SDAG] Let the DAG combiner take care of dead nodes rather than manually
author
Chandler Carruth
<chandlerc@gmail.com>
Sat, 2 Aug 2014 00:19:10 +0000
(
00:19
+0000)
committer
Chandler Carruth
<chandlerc@gmail.com>
Sat, 2 Aug 2014 00:19:10 +0000
(
00:19
+0000)
deleting them. This already seems to work, as no tests fail without
this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214601
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/ARMISelLowering.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/ARMISelLowering.cpp
b/lib/Target/ARM/ARMISelLowering.cpp
index a67c68a431709cf894ab2f29943274f858ed48c4..d6120c776a0f37e24739de4037534b992e862e9c 100644
(file)
--- a/
lib/Target/ARM/ARMISelLowering.cpp
+++ b/
lib/Target/ARM/ARMISelLowering.cpp
@@
-8443,8
+8443,6
@@
static SDValue PerformVMOVRRDCombine(SDNode *N,
if (DCI.DAG.getTargetLoweringInfo().isBigEndian())
std::swap (NewLD1, NewLD2);
SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
- DCI.RemoveFromWorklist(LD);
- DAG.DeleteNode(LD);
return Result;
}