Temporarily revert the last change, which breaks PPC and other targets that
authorChris Lattner <sabre@nondot.org>
Sat, 4 Feb 2006 09:23:06 +0000 (09:23 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 4 Feb 2006 09:23:06 +0000 (09:23 +0000)
DO select things.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25970 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/DAGISelEmitter.cpp

index 0b3d6df0d1f7c8fcf2fcd016861f23075183c09f..873b8ade4e2968a4a826fa2ebe2e14dde4db1202 100644 (file)
@@ -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 {