diff options
| author | Gabor Greif <ggreif@gmail.com> | 2010-09-07 06:06:06 +0000 |
|---|---|---|
| committer | Gabor Greif <ggreif@gmail.com> | 2010-09-07 06:06:06 +0000 |
| commit | 7f3ce25e6e77d3a19e1d7fcea40548ca011a3cb3 (patch) | |
| tree | d3ba72f92a8ec62a33ae1476ef04c082f456a60a /llvm | |
| parent | ad48e01eef196d0a19739c9109c44c4ea251a5db (diff) | |
| download | bcm5719-llvm-7f3ce25e6e77d3a19e1d7fcea40548ca011a3cb3.tar.gz bcm5719-llvm-7f3ce25e6e77d3a19e1d7fcea40548ca011a3cb3.zip | |
fix comment typos
llvm-svn: 113197
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/utils/TableGen/AsmMatcherEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/AsmMatcherEmitter.cpp b/llvm/utils/TableGen/AsmMatcherEmitter.cpp index 7079013a468..dae3d6ed4e3 100644 --- a/llvm/utils/TableGen/AsmMatcherEmitter.cpp +++ b/llvm/utils/TableGen/AsmMatcherEmitter.cpp @@ -1709,7 +1709,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) { << "i != e; ++i)\n"; OS << " Classes[i] = InvalidMatchClass;\n\n"; - OS << " // Get the instruction mneumonic, which is the first token.\n"; + OS << " // Get the instruction mnemonic, which is the first token.\n"; OS << " StringRef Mnemonic = ((" << Target.getName() << "Operand*)Operands[0])->getToken();\n\n"; @@ -1733,7 +1733,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) { << "*ie = MnemonicRange.second;\n"; OS << " it != ie; ++it) {\n"; - OS << " // equal_range guarantees that instruction mneumonic matches.\n"; + OS << " // equal_range guarantees that instruction mnemonic matches.\n"; OS << " assert(Mnemonic == it->Mnemonic);\n"; // Emit check that the subclasses match. |

