Fix spelling of CouldMatchAmbiguouslyWith method name.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124324 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bob Wilson 2011-01-26 21:26:21 +00:00
parent 828295bb30
commit 1f64ac4035

View File

@ -426,7 +426,7 @@ struct MatchableInfo {
return AsmOperands.size() < RHS.AsmOperands.size(); return AsmOperands.size() < RHS.AsmOperands.size();
// Compare lexicographically by operand. The matcher validates that other // Compare lexicographically by operand. The matcher validates that other
// orderings wouldn't be ambiguous using \see CouldMatchAmiguouslyWith(). // orderings wouldn't be ambiguous using \see CouldMatchAmbiguouslyWith().
for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) { for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class) if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
return true; return true;
@ -437,10 +437,10 @@ struct MatchableInfo {
return false; return false;
} }
/// CouldMatchAmiguouslyWith - Check whether this matchable could /// CouldMatchAmbiguouslyWith - Check whether this matchable could
/// ambiguously match the same set of operands as \arg RHS (without being a /// ambiguously match the same set of operands as \arg RHS (without being a
/// strictly superior match). /// strictly superior match).
bool CouldMatchAmiguouslyWith(const MatchableInfo &RHS) { bool CouldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
// The primary comparator is the instruction mnemonic. // The primary comparator is the instruction mnemonic.
if (Mnemonic != RHS.Mnemonic) if (Mnemonic != RHS.Mnemonic)
return false; return false;
@ -1867,7 +1867,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
MatchableInfo &A = *Info.Matchables[i]; MatchableInfo &A = *Info.Matchables[i];
MatchableInfo &B = *Info.Matchables[j]; MatchableInfo &B = *Info.Matchables[j];
if (A.CouldMatchAmiguouslyWith(B)) { if (A.CouldMatchAmbiguouslyWith(B)) {
errs() << "warning: ambiguous matchables:\n"; errs() << "warning: ambiguous matchables:\n";
A.dump(); A.dump();
errs() << "\nis incomparable with:\n"; errs() << "\nis incomparable with:\n";