From: Daniel Dunbar Date: Sun, 9 Aug 2009 08:23:23 +0000 (+0000) Subject: llvm-mc/AsmParser: Fix thinko in ClassInfo::operator<. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=db2ddb5dc57319eff249144f1d9a553a3278d2e0;p=oota-llvm.git llvm-mc/AsmParser: Fix thinko in ClassInfo::operator<. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78533 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/AsmMatcherEmitter.cpp b/utils/TableGen/AsmMatcherEmitter.cpp index a13bc4e0b95..ef9ab205533 100644 --- a/utils/TableGen/AsmMatcherEmitter.cpp +++ b/utils/TableGen/AsmMatcherEmitter.cpp @@ -396,10 +396,15 @@ struct InstructionInfo { if (Operands.size() != RHS.Operands.size()) return Operands.size() < RHS.Operands.size(); - for (unsigned i = 0, e = Operands.size(); i != e; ++i) + // Compare lexicographically by operand. The matcher validates that other + // orderings wouldn't be ambiguous using \see CouldMatchAmiguouslyWith(). + for (unsigned i = 0, e = Operands.size(); i != e; ++i) { if (*Operands[i].Class < *RHS.Operands[i].Class) return true; - + if (*RHS.Operands[i].Class < *Operands[i].Class) + return false; + } + return false; }