diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-27 16:16:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-27 16:16:51 +0000 |
commit | 075250bda117db4dffde5edb21b184a0b0c891d0 (patch) | |
tree | fb63f64e34c58233658f5ecf464704564836f7ff | |
parent | 5ee85e89b6fae9655bfd8dcbb1856e869e17cc73 (diff) | |
download | bcm5719-llvm-075250bda117db4dffde5edb21b184a0b0c891d0.tar.gz bcm5719-llvm-075250bda117db4dffde5edb21b184a0b0c891d0.zip |
Disable this code, which broke many tests last night
llvm-svn: 23114
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index c841d433c9f..b587e3697db 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/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 { |