summaryrefslogtreecommitdiff
path: root/lib/MC
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
commit50e75bfc29269def44981ab5f109334d95f55007 (patch)
tree5169548b0725715304c3186ea3f5f1ebe500ad2b /lib/MC
parentfc7695a653323071ec141aee994e4188592ad1f5 (diff)
'Hexadecimal' has two 'a's and only one 'i'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCParser/AsmLexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCParser/AsmLexer.cpp b/lib/MC/MCParser/AsmLexer.cpp
index 530e94e8d37..86a9674f2f7 100644
--- a/lib/MC/MCParser/AsmLexer.cpp
+++ b/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;