From cf6d791e08ad0a3c147b7c338429e2f8ed8d226a Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Tue, 19 Sep 2006 18:40:15 +0000 Subject: [PATCH] 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 --- utils/TableGen/DAGISelEmitter.cpp | 1 + 1 file changed, 1 insertion(+) 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;