aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-27 16:16:51 +0000
committerChris Lattner <sabre@nondot.org>2005-08-27 16:16:51 +0000
commit88b9c159120703555a30314411af26f425597d90 (patch)
treedafb1ff7625de2a2d9cf5f1cadd0458c6be3582b /lib/CodeGen/SelectionDAG
parent620c93cca1aeef8a53b00eee19e3f16926dcc1cf (diff)
Disable this code, which broke many tests last night
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index c841d433c9..b587e3697d 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -1078,7 +1078,7 @@ LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
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 {