From: Christopher Lamb Date: Thu, 26 Jul 2007 07:03:08 +0000 (+0000) Subject: Fix 80 col violation. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f0006127b3c4dd5e0e104ae0ef1d25d7540d57f0;p=oota-llvm.git Fix 80 col violation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40515 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstrBuilder.h b/include/llvm/CodeGen/MachineInstrBuilder.h index c20d52d5adf..b2361a51b1e 100644 --- a/include/llvm/CodeGen/MachineInstrBuilder.h +++ b/include/llvm/CodeGen/MachineInstrBuilder.h @@ -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; }