From b9f01eb7bce0e049fb01e2feb3c9252458cc5b35 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 16 Sep 2005 00:29:46 +0000 Subject: [PATCH] Fix a minor bug, add comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23370 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/DAGISelEmitter.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp index 79ef2311c3d..d0aac0b51a2 100644 --- a/utils/TableGen/DAGISelEmitter.cpp +++ b/utils/TableGen/DAGISelEmitter.cpp @@ -697,7 +697,7 @@ static bool HandleUse(TreePattern *I, TreePatternNode *Pat, } else { Record *SlotRec; if (Slot->isLeaf()) { - Rec = dynamic_cast(Slot->getLeafValue())->getDef(); + SlotRec = dynamic_cast(Slot->getLeafValue())->getDef(); } else { assert(Slot->getNumChildren() == 0 && "can't be a use with children!"); SlotRec = Slot->getOperator(); @@ -1018,13 +1018,16 @@ void DAGISelEmitter::run(std::ostream &OS) { OS << "// *** NOTE: This file is #included into the middle of the target\n" << "// *** instruction selector class. These functions are really " << "methods.\n\n"; + ParseNodeInfo(); ParseNodeTransforms(OS); ParsePatternFragments(OS); ParseInstructions(); ParsePatterns(); - // TODO: convert some instructions to expanders if needed or something. + // At this point, we have full information about the 'Patterns' we need to + // parse, both implicitly from instructions as well as from explicit pattern + // definitions. EmitInstructionSelector(OS); -- 2.34.1