Temporarily revert the last change, which breaks PPC and other targets that
DO select things.
llvm-svn: 25970
diff --git a/llvm/utils/TableGen/DAGISelEmitter.cpp b/llvm/utils/TableGen/DAGISelEmitter.cpp
index 0b3d6df..873b8ad 100644
--- a/llvm/utils/TableGen/DAGISelEmitter.cpp
+++ b/llvm/utils/TableGen/DAGISelEmitter.cpp
@@ -2137,9 +2137,10 @@
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 {