diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-19 18:01:37 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-19 18:01:37 +0000 |
commit | 3ea4daaf5043ba2d4745f43c5dc2e44c0305ca00 (patch) | |
tree | 16f9b3c9d9ea4b5dfc11077b84a27b98ce030155 | |
parent | 7a08864860d68af2fdd70496601378e5e1b1c15d (diff) |
Remove hard tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119810 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index f0413a38ec..23c4a13e29 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -442,8 +442,8 @@ unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) { if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) { unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16; AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, - TII.get(Opc), DestReg) - .addImm(CI->getSExtValue())); + TII.get(Opc), DestReg) + .addImm(CI->getSExtValue())); return DestReg; } |