diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2013-02-25 18:11:18 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2013-02-25 18:11:18 +0000 |
commit | 0e760da5fc63fd4d3e16d2917fcca848b932d35b (patch) | |
tree | 20de2a4531ee5f01adb33aa8d21c7f4a5ae6849e /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | b4548299814ef9d90e2ae99bb628c82c944234ea (diff) | |
download | bcm5719-llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.tar.gz bcm5719-llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.zip |
'Hexadecimal' has two 'a's and only one 'i'.
llvm-svn: 176031
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 3a6f9b23c79..b8ab2a9c1bc 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) { |