[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Jim Laskey
jlaskey at apple.com
Mon Sep 25 14:11:46 PDT 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
DAGCombiner.cpp updated: 1.199 -> 1.200
---
Log message:
Accidental enable of bad code
---
Diffs of the changes: (+1 -1)
DAGCombiner.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.199 llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.200
--- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.199 Mon Sep 25 14:32:58 2006
+++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Mon Sep 25 16:11:32 2006
@@ -2706,7 +2706,7 @@
// If this is a store of a bit convert, store the input value.
// FIXME: This needs to know that the resultant store does not need a
// higher alignment than the original.
- if (Value.getOpcode() == ISD::BIT_CONVERT) {
+ if (0 && Value.getOpcode() == ISD::BIT_CONVERT) {
return DAG.getNode(ISD::STORE, MVT::Other, Chain, Value.getOperand(0),
Ptr, SrcValue);
}
More information about the llvm-commits
mailing list