aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-04 09:23:06 +0000
committerChris Lattner <sabre@nondot.org>2006-02-04 09:23:06 +0000
commit9ed44818c5ee0385db3d19b59d9c6a020fbdf084 (patch)
treecfb6d1f3cf9471a18e398b7bb91418793c5572d7
parent03f774ad8087a111781ec491169d5c2305e486b7 (diff)
Temporarily revert the last change, which breaks PPC and other targets that
DO select things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25970 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/TableGen/DAGISelEmitter.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp
index 0b3d6df0d1..873b8ade4e 100644
--- a/utils/TableGen/DAGISelEmitter.cpp
+++ b/utils/TableGen/DAGISelEmitter.cpp
@@ -2137,9 +2137,10 @@ public:
Code += ", Tmp" + utostr(i + ResNo);
emitCheck(Code + ")");
- for (unsigned i = 0; i < NumRes; ++i)
- emitCode("Tmp" + utostr(i+ResNo) + " = Select(Tmp" +
- utostr(i+ResNo) + ");");
+ // This breaks ppc
+ //for (unsigned i = 0; i < NumRes; ++i)
+ // emitCode("Tmp" + utostr(i+ResNo) + " = Select(Tmp" +
+ // utostr(i+ResNo) + ");");
TmpNo = ResNo + NumRes;
} else {