Indentation.
authorEvan Cheng <evan.cheng@apple.com>
Sun, 7 Sep 2008 09:04:52 +0000 (09:04 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sun, 7 Sep 2008 09:04:52 +0000 (09:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55880 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/FastISel.cpp

index c109a096a1f7f5c01b166f8bd430268515158ff4..19cb922ac74e3efbc413b73ef47ab7e76a2d47c5 100644 (file)
@@ -99,8 +99,8 @@ void FastISel::UpdateValueMap(Value* I, unsigned Reg) {
   if (!ValueMap.count(I))
     ValueMap[I] = Reg;
   else
-     TII.copyRegToReg(*MBB, MBB->end(), ValueMap[I],
-                      Reg, MRI.getRegClass(Reg), MRI.getRegClass(Reg));
+    TII.copyRegToReg(*MBB, MBB->end(), ValueMap[I],
+                     Reg, MRI.getRegClass(Reg), MRI.getRegClass(Reg));
 }
 
 /// SelectBinaryOp - Select and emit code for a binary operator instruction,