diff --git a/utils/TableGen/FastISelEmitter.cpp b/utils/TableGen/FastISelEmitter.cpp index 201a2cc5fef..8c60b088627 100644 --- a/utils/TableGen/FastISelEmitter.cpp +++ b/utils/TableGen/FastISelEmitter.cpp @@ -82,11 +82,11 @@ struct OperandsSignature { if (!Op->isLeaf()) { if (Op->getOperator()->getName() == "imm") { Operands.push_back("i"); - return true; + continue; } if (Op->getOperator()->getName() == "fpimm") { Operands.push_back("f"); - return true; + continue; } // For now, ignore other non-leaf nodes. return false;