diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-12-28 03:07:12 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-12-28 03:07:12 +0000 |
commit | 83e3770ae7cf5bc3baf9ed06a0813b3c943ec506 (patch) | |
tree | 0639128bb8338f628d927025189e1fe7c69ef565 /llvm/lib | |
parent | 2588aa7454996f3a333c9b0eccec5ccc75362807 (diff) | |
download | bcm5719-llvm-83e3770ae7cf5bc3baf9ed06a0813b3c943ec506.tar.gz bcm5719-llvm-83e3770ae7cf5bc3baf9ed06a0813b3c943ec506.zip |
ARMAsmParser: fix typo in comment
llvm-svn: 198095
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 073d6c8dbdd..60c0929c7a1 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -4703,7 +4703,7 @@ bool ARMAsmParser::parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands, Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E)); // There can be a trailing '!' on operands that we want as a separate - // '!' Token operand. Handle that here. For example, the compatibilty + // '!' Token operand. Handle that here. For example, the compatibility // alias for 'srsdb sp!, #imm' is 'srsdb #imm!'. if (Parser.getTok().is(AsmToken::Exclaim)) { Operands.push_back(ARMOperand::CreateToken(Parser.getTok().getString(), |