diff options
author | Christopher Lamb <christopher.lamb@gmail.com> | 2007-07-26 07:03:08 +0000 |
---|---|---|
committer | Christopher Lamb <christopher.lamb@gmail.com> | 2007-07-26 07:03:08 +0000 |
commit | f0006127b3c4dd5e0e104ae0ef1d25d7540d57f0 (patch) | |
tree | 9648448316023a36e158f0bf3804c882f97f7302 /include/llvm/CodeGen/MachineInstrBuilder.h | |
parent | 6f95014158208ad6cd6f6d1996c821fca61d7915 (diff) |
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstrBuilder.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstrBuilder.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstrBuilder.h b/include/llvm/CodeGen/MachineInstrBuilder.h index c20d52d5ad..b2361a51b1 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; } |