[llvm-commits] CVS: llvm/tools/bugpoint/Miscompilation.cpp
Reid Spencer
reid at x10sys.com
Sat Nov 11 11:59:41 PST 2006
Changes in directory llvm/tools/bugpoint:
Miscompilation.cpp updated: 1.79 -> 1.80
---
Log message:
Minor style fixes from review.
---
Diffs of the changes: (+2 -3)
Miscompilation.cpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Index: llvm/tools/bugpoint/Miscompilation.cpp
diff -u llvm/tools/bugpoint/Miscompilation.cpp:1.79 llvm/tools/bugpoint/Miscompilation.cpp:1.80
--- llvm/tools/bugpoint/Miscompilation.cpp:1.79 Sat Nov 11 13:05:02 2006
+++ llvm/tools/bugpoint/Miscompilation.cpp Sat Nov 11 13:59:25 2006
@@ -518,9 +518,8 @@
// See if we can rip any loops out of the miscompiled functions and still
// trigger the problem.
- if (!DisableLoopExtraction)
- if (!BugpointIsInterrupted &&
- ExtractLoops(BD, TestFn, MiscompiledFunctions)) {
+ if (!BugpointIsInterrupted && !DisableLoopExtraction &&
+ ExtractLoops(BD, TestFn, MiscompiledFunctions)) {
// Okay, we extracted some loops and the problem still appears. See if we
// can eliminate some of the created functions from being candidates.
More information about the llvm-commits
mailing list