commit | fe27978ef28b2cef7c0015a319758efaba7e3801 | [log] [tgz] |
---|---|---|
author | Duncan Sands <baldrick@free.fr> | Tue Sep 11 12:30:25 2007 +0000 |
committer | Duncan Sands <baldrick@free.fr> | Tue Sep 11 12:30:25 2007 +0000 |
tree | 0286200cf9f41a98c7fa2c858673e752a503aa7c | |
parent | d1bda4f70ae19dcc4ac3b0ba063c6f3a9af0a580 [diff] [blame] |
My compiler warns about the semicolon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41840 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86FloatingPoint.cpp b/lib/Target/X86/X86FloatingPoint.cpp index 5d31b19..615c055 100644 --- a/lib/Target/X86/X86FloatingPoint.cpp +++ b/lib/Target/X86/X86FloatingPoint.cpp
@@ -256,7 +256,7 @@ 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(); );