[llvm] r251769 - Untabify.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 1 17:38:13 PST 2015


Author: chapuni
Date: Sun Nov  1 19:38:12 2015
New Revision: 251769

URL: http://llvm.org/viewvc/llvm-project?rev=251769&view=rev
Log:
Untabify.

Modified:
    llvm/trunk/lib/Target/SystemZ/SystemZElimCompare.cpp
    llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp
    llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.h

Modified: llvm/trunk/lib/Target/SystemZ/SystemZElimCompare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZElimCompare.cpp?rev=251769&r1=251768&r2=251769&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZElimCompare.cpp (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZElimCompare.cpp Sun Nov  1 19:38:12 2015
@@ -150,9 +150,9 @@ static bool isLoadAndTestAsCmp(MachineIn
   // If we during isel used a load-and-test as a compare with 0, the
   // def operand is dead.
   return ((MI->getOpcode() == SystemZ::LTEBR ||
-	   MI->getOpcode() == SystemZ::LTDBR ||
-	   MI->getOpcode() == SystemZ::LTXBR) &&
-	  MI->getOperand(0).isDead());
+           MI->getOpcode() == SystemZ::LTDBR ||
+           MI->getOpcode() == SystemZ::LTXBR) &&
+          MI->getOperand(0).isDead());
 }
 
 // Return the source register of Compare, which is the unknown value

Modified: llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp?rev=251769&r1=251768&r2=251769&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp Sun Nov  1 19:38:12 2015
@@ -5620,8 +5620,8 @@ SystemZTargetLowering::emitTransactionBe
 
 MachineBasicBlock *
 SystemZTargetLowering::emitLoadAndTestCmp0(MachineInstr *MI,
-					  MachineBasicBlock *MBB,
-					  unsigned Opcode) const {
+                                          MachineBasicBlock *MBB,
+                                          unsigned Opcode) const {
   MachineFunction &MF = *MBB->getParent();
   MachineRegisterInfo *MRI = &MF.getRegInfo();
   const SystemZInstrInfo *TII =

Modified: llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.h?rev=251769&r1=251768&r2=251769&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.h (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.h Sun Nov  1 19:38:12 2015
@@ -531,8 +531,8 @@ private:
                                           unsigned Opcode,
                                           bool NoFloat) const;
   MachineBasicBlock *emitLoadAndTestCmp0(MachineInstr *MI,
-					 MachineBasicBlock *MBB,
-					 unsigned Opcode) const;
+                                         MachineBasicBlock *MBB,
+                                         unsigned Opcode) const;
 
 };
 } // end namespace llvm




More information about the llvm-commits mailing list