From 49c23935e01ec039910184d071633468557eb28b Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Tue, 11 Sep 2007 12:30:25 +0000 Subject: [PATCH] My compiler warns about the semicolon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41840 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86FloatingPoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86FloatingPoint.cpp b/lib/Target/X86/X86FloatingPoint.cpp index 5d31b1947d1..615c05533f3 100644 --- a/lib/Target/X86/X86FloatingPoint.cpp +++ b/lib/Target/X86/X86FloatingPoint.cpp @@ -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(); );