Temporarily revert the last change, which breaks PPC and other targets that
[oota-llvm.git] / 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 {