aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/TargetInstrInfoImpl.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-11 05:58:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-11 05:58:06 +0000
commitaefc93dac613930bd53be9a4e60a0b74eb9ef060 (patch)
treea41a53a96c8e7e0597ce000da1449718a091bd77 /lib/CodeGen/TargetInstrInfoImpl.cpp
parentddb761b8cd6cfb96b761d3ffb75362ed0ec4f2e3 (diff)
downloadexternal_llvm-aefc93dac613930bd53be9a4e60a0b74eb9ef060.zip
external_llvm-aefc93dac613930bd53be9a4e60a0b74eb9ef060.tar.gz
external_llvm-aefc93dac613930bd53be9a4e60a0b74eb9ef060.tar.bz2
Fix a 80 column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetInstrInfoImpl.cpp')
-rw-r--r--lib/CodeGen/TargetInstrInfoImpl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/TargetInstrInfoImpl.cpp b/lib/CodeGen/TargetInstrInfoImpl.cpp
index 82f6a85..ca8782e 100644
--- a/lib/CodeGen/TargetInstrInfoImpl.cpp
+++ b/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;