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 | 07b222fe9c26c415c0da81f20e5049a2497a9695 (patch) | |
tree | 9648448316023a36e158f0bf3804c882f97f7302 | |
parent | 960a9fc5892b1f4b5e8f1bca84f742e66e2285a2 (diff) | |
download | external_llvm-07b222fe9c26c415c0da81f20e5049a2497a9695.zip external_llvm-07b222fe9c26c415c0da81f20e5049a2497a9695.tar.gz external_llvm-07b222fe9c26c415c0da81f20e5049a2497a9695.tar.bz2 |
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40515 91177308-0d34-0410-b5e6-96231b3b80d8
-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 c20d52d..b2361a5 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; } |