From 9ed44818c5ee0385db3d19b59d9c6a020fbdf084 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 4 Feb 2006 09:23:06 +0000 Subject: [PATCH] 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 --- utils/TableGen/DAGISelEmitter.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp index 0b3d6df0d1f..873b8ade4e2 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 { -- 2.34.1