diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-09-11 05:58:06 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-11 05:58:06 +0000 |
| commit | 783ed9ead15567ee94ab3fdd9618f0646e955727 (patch) | |
| tree | e4336abc82d7030712b9a564216adfb91f234c2a /llvm/lib | |
| parent | 176edb54908d7cf76650e672dbe147e0347cf38c (diff) | |
| download | bcm5719-llvm-783ed9ead15567ee94ab3fdd9618f0646e955727.tar.gz bcm5719-llvm-783ed9ead15567ee94ab3fdd9618f0646e955727.zip | |
Fix a 80 column violation.
llvm-svn: 56097
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/TargetInstrInfoImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp b/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp index 82f6a85fc28..ca8782e283a 100644 --- a/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp +++ b/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp @@ -118,7 +118,8 @@ TargetInstrInfoImpl::GetFunctionSizeInBytes(const MachineFunction &MF) const { for (MachineFunction::const_iterator MBBI = MF.begin(), E = MF.end(); MBBI != E; ++MBBI) { const MachineBasicBlock &MBB = *MBBI; - for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end(); I != E; ++I) + for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end(); + I != E; ++I) FnSize += GetInstSizeInBytes(I); } return FnSize; |

