From 0e760da5fc63fd4d3e16d2917fcca848b932d35b Mon Sep 17 00:00:00 2001 From: Matt Beaumont-Gay Date: Mon, 25 Feb 2013 18:11:18 +0000 Subject: [PATCH] 'Hexadecimal' has two 'a's and only one 'i'. llvm-svn: 176031 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 4 ++-- llvm/lib/MC/MCParser/AsmLexer.cpp | 2 +- llvm/test/MC/X86/intel-syntax-hex.s | 2 +- llvm/utils/unittest/googletest/gtest-printers.cc | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 3a6f9b2..b8ab2a9 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -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) { 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; diff --git a/llvm/test/MC/X86/intel-syntax-hex.s b/llvm/test/MC/X86/intel-syntax-hex.s index 35376c6..b3a19fb 100644 --- a/llvm/test/MC/X86/intel-syntax-hex.s +++ b/llvm/test/MC/X86/intel-syntax-hex.s @@ -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 diff --git a/llvm/utils/unittest/googletest/gtest-printers.cc b/llvm/utils/unittest/googletest/gtest-printers.cc index ed63c7b..205a394 100644 --- a/llvm/utils/unittest/googletest/gtest-printers.cc +++ b/llvm/utils/unittest/googletest/gtest-printers.cc @@ -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)) { -- 2.7.4