1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove hard tabs.

llvm-svn: 119810
This commit is contained in:
Jim Grosbach 2010-11-19 18:01:37 +00:00
parent 48531dd967
commit be61a90b99

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