aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCParser/AsmLexer.cpp
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2013-02-25 18:11:18 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2013-02-25 18:11:18 +0000
commit0e760da5fc63fd4d3e16d2917fcca848b932d35b (patch)
tree20de2a4531ee5f01adb33aa8d21c7f4a5ae6849e /llvm/lib/MC/MCParser/AsmLexer.cpp
parentb4548299814ef9d90e2ae99bb628c82c944234ea (diff)
downloadllvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.zip
llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.tar.gz
llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.tar.bz2
'Hexadecimal' has two 'a's and only one 'i'.
llvm-svn: 176031
Diffstat (limited to 'llvm/lib/MC/MCParser/AsmLexer.cpp')
-rw-r--r--llvm/lib/MC/MCParser/AsmLexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCParser/AsmLexer.cpp b/llvm/lib/MC/MCParser/AsmLexer.cpp
index 530e94e..86a9674 100644
--- a/llvm/lib/MC/MCParser/AsmLexer.cpp
+++ b/llvm/lib/MC/MCParser/AsmLexer.cpp
@@ -282,7 +282,7 @@ AsmToken AsmLexer::LexDigit() {
(int64_t)Result);
}
- // Either octal or hexidecimal.
+ // Either octal or hexadecimal.
long long Value;
unsigned Radix = doLookAhead(CurPtr, 8);
bool isHex = Radix == 16;