Remove hard tabs.

llvm-svn: 119810
This commit is contained in:
Jim Grosbach 2010-11-19 18:01:37 +00:00
parent 6d776eb1e8
commit d7a3550a5e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}