[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp
Evan Cheng
evan.cheng at apple.com
Tue Sep 19 11:40:30 PDT 2006
Changes in directory llvm/utils/TableGen:
DAGISelEmitter.cpp updated: 1.259 -> 1.260
---
Log message:
Add result of a Xform to isel queue.
---
Diffs of the changes: (+1 -0)
DAGISelEmitter.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/utils/TableGen/DAGISelEmitter.cpp
diff -u llvm/utils/TableGen/DAGISelEmitter.cpp:1.259 llvm/utils/TableGen/DAGISelEmitter.cpp:1.260
--- llvm/utils/TableGen/DAGISelEmitter.cpp:1.259 Mon Sep 18 19:41:36 2006
+++ llvm/utils/TableGen/DAGISelEmitter.cpp Tue Sep 19 13:40:15 2006
@@ -2827,6 +2827,7 @@
emitCode("SDOperand Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
+ "(" + Ops.back() + ".Val);");
NodeOps.push_back("Tmp" + utostr(ResNo));
+ emitCode("AddToISelQueue(Tmp" + utostr(ResNo) + ");");
if (isRoot)
emitCode("return Tmp" + utostr(ResNo) + ".Val;");
return NodeOps;
More information about the llvm-commits
mailing list