mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix a 80 column violation.
llvm-svn: 56097
This commit is contained in:
parent
10e1cf3df2
commit
9de997d5de
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user