[llvm-commits] [llvm] r153073 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Eric Christopher
echristo at apple.com
Mon Mar 19 18:07:56 PDT 2012
Author: echristo
Date: Mon Mar 19 20:07:56 2012
New Revision: 153073
URL: http://llvm.org/viewvc/llvm-project?rev=153073&view=rev
Log:
Untabify.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=153073&r1=153072&r2=153073&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Mon Mar 19 20:07:56 2012
@@ -192,7 +192,7 @@
uint32_t IntBitWidth = IntVT.getSizeInBits();
bool isExact;
(void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
- APFloat::rmTowardZero, &isExact);
+ APFloat::rmTowardZero, &isExact);
if (isExact) {
APInt IntVal(IntBitWidth, x);
@@ -587,7 +587,7 @@
// Some arguments' frame index is recorded during argument lowering.
Offset = FuncInfo.getArgumentFrameIndex(Arg);
if (Offset)
- Reg = TRI.getFrameRegister(*FuncInfo.MF);
+ Reg = TRI.getFrameRegister(*FuncInfo.MF);
}
if (!Reg)
Reg = getRegForValue(Address);
More information about the llvm-commits
mailing list