My compiler warns about the semicolon.

llvm-svn: 41840
This commit is contained in:
Duncan Sands 2007-09-11 12:30:25 +00:00
parent 2b8fc31df9
commit 1a11e1c14f
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) {
while (Start != BB.begin() && prior(Start) != PrevI) --Start;
cerr << "Inserted instructions:\n\t";
Start->print(*cerr.stream(), &MF.getTarget());
while (++Start != next(I));
while (++Start != next(I)) {}
}
dumpStack();
);