[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Aug 27 09:17:42 PDT 2005



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.76 -> 1.77
---
Log message:

Disable this code, which broke many tests last night

---
Diffs of the changes:  (+1 -1)

 SelectionDAGISel.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.76 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.77
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.76	Fri Aug 26 17:49:59 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Sat Aug 27 11:16:51 2005
@@ -1078,7 +1078,7 @@
         if (!AI->use_empty()) {
           SDL.setValue(AI, Args[a]);
           
-          if (IsOnlyUsedInOneBasicBlock(AI) == F.begin()) {
+          if (0 && IsOnlyUsedInOneBasicBlock(AI) == F.begin()) {
             // Only used in the entry block, no need to copy it to a vreg for
             // other blocks.
           } else {






More information about the llvm-commits mailing list