'Hexadecimal' has two 'a's and only one 'i'.
authorMatt Beaumont-Gay <matthewbg@google.com>
Mon, 25 Feb 2013 18:11:18 +0000 (18:11 +0000)
committerMatt Beaumont-Gay <matthewbg@google.com>
Mon, 25 Feb 2013 18:11:18 +0000 (18:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176031 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
lib/MC/MCParser/AsmLexer.cpp
test/MC/X86/intel-syntax-hex.s
utils/unittest/googletest/gtest-printers.cc

index 3a6f9b23c790d8a01820f2cf5a8672ba665b216e..b8ab2a9c1bcf83ecfb3053008262e7a92b45fb99 100644 (file)
@@ -3663,7 +3663,7 @@ void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I,
 ///
 ///   Op = (Op & 0x007fffff) | 0x3f800000;
 ///
-/// where Op is the hexidecimal representation of floating point value.
+/// where Op is the hexadecimal representation of floating point value.
 static SDValue
 GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
   SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
@@ -3677,7 +3677,7 @@ GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
 ///
 ///   (float)(int)(((Op & 0x7f800000) >> 23) - 127);
 ///
-/// where Op is the hexidecimal representation of floating point value.
+/// where Op is the hexadecimal representation of floating point value.
 static SDValue
 GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
             DebugLoc dl) {
index 530e94e8d374d6f853b17986e407592cc81c3229..86a9674f2f77ae15ad8c7b9aa8763e3ebd4070d4 100644 (file)
@@ -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;
index 35376c611bfe0a075b15daf2470ea2e6d5d3d318..b3a19fbaa34501ef74cc3db0dd0add822147f4be 100644 (file)
@@ -1,7 +1,7 @@
 // RUN: llvm-mc -triple x86_64-unknown-unknown -x86-asm-syntax=intel %s | FileCheck %s
 // rdar://12470373
 
-// Checks to make sure we parse the hexidecimal suffix properly.
+// Checks to make sure we parse the hexadecimal suffix properly.
 // CHECK: movl $10, %eax
   mov eax, 10
 // CHECK: movl $16, %eax
index ed63c7b3b91d57d9d2ca6cce330d98b8794be8bc..205a39425f0e7d2862e70844ec0bda358daa6b96 100644 (file)
@@ -127,7 +127,7 @@ namespace internal {
 // Depending on the value of a char (or wchar_t), we print it in one
 // of three formats:
 //   - as is if it's a printable ASCII (e.g. 'a', '2', ' '),
-//   - as a hexidecimal escape sequence (e.g. '\x7F'), or
+//   - as a hexadecimal escape sequence (e.g. '\x7F'), or
 //   - as a special escape sequence (e.g. '\r', '\n').
 enum CharFormat {
   kAsIs,
@@ -230,7 +230,7 @@ void PrintCharAndCodeTo(Char c, ostream* os) {
     return;
   *os << " (" << String::Format("%d", c).c_str();
 
-  // For more convenience, we print c's code again in hexidecimal,
+  // For more convenience, we print c's code again in hexadecimal,
   // unless c was already printed in the form '\x##' or the code is in
   // [1, 9].
   if (format == kHexEscape || (1 <= c && c <= 9)) {