From: Evan Cheng Date: Tue, 19 Sep 2006 18:40:15 +0000 (+0000) Subject: Add result of a Xform to isel queue. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf6d791e08ad0a3c147b7c338429e2f8ed8d226a;p=oota-llvm.git Add result of a Xform to isel queue. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30497 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp index 7c1c22d2de7..5327f10679e 100644 --- a/utils/TableGen/DAGISelEmitter.cpp +++ b/utils/TableGen/DAGISelEmitter.cpp @@ -2827,6 +2827,7 @@ public: 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;