Fix spelling of CouldMatchAmbiguouslyWith method name.
authorBob Wilson <bob.wilson@apple.com>
Wed, 26 Jan 2011 21:26:21 +0000 (21:26 +0000)
committerBob Wilson <bob.wilson@apple.com>
Wed, 26 Jan 2011 21:26:21 +0000 (21:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124324 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/AsmMatcherEmitter.cpp

index 109f6bd9bdf4e3199ef7e695bff396fc6a15728d..97cc3ff3db6245568c1e7baccee8bb5f725efb94 100644 (file)
@@ -426,7 +426,7 @@ struct MatchableInfo {
       return AsmOperands.size() < RHS.AsmOperands.size();
 
     // 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) {
       if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
         return true;
@@ -437,10 +437,10 @@ struct MatchableInfo {
     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
   /// strictly superior match).
-  bool CouldMatchAmiguouslyWith(const MatchableInfo &RHS) {
+  bool CouldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
     // The primary comparator is the instruction mnemonic.
     if (Mnemonic != RHS.Mnemonic)
       return false;
@@ -1867,7 +1867,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
         MatchableInfo &A = *Info.Matchables[i];
         MatchableInfo &B = *Info.Matchables[j];
 
-        if (A.CouldMatchAmiguouslyWith(B)) {
+        if (A.CouldMatchAmbiguouslyWith(B)) {
           errs() << "warning: ambiguous matchables:\n";
           A.dump();
           errs() << "\nis incomparable with:\n";