Fix 80 col violation.
authorChristopher Lamb <christopher.lamb@gmail.com>
Thu, 26 Jul 2007 07:03:08 +0000 (07:03 +0000)
committerChristopher Lamb <christopher.lamb@gmail.com>
Thu, 26 Jul 2007 07:03:08 +0000 (07:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40515 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineInstrBuilder.h

index c20d52d5adfc7184c7a3a0d4c62974a6c9b73c76..b2361a51b1e772dfd784f18d9ad13b50c3142097 100644 (file)
@@ -37,8 +37,9 @@ public:
   /// addReg - Add a new virtual register operand...
   ///
   const
-  MachineInstrBuilder &addReg(unsigned RegNo, bool isDef = false, bool isImp = false,
-                              bool isKill = false, bool isDead = false) const {
+  MachineInstrBuilder &addReg(unsigned RegNo, bool isDef = false, 
+                              bool isImp = false, bool isKill = false, 
+                              bool isDead = false) const {
     MI->addRegOperand(RegNo, isDef, isImp, isKill, isDead);
     return *this;
   }