Minor style fixes from review.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2006-11-11 19:59:25 +00:00
parent a94a203f34
commit 2803b4cc58
3 changed files with 8 additions and 7 deletions
+2 -3
View File
@@ -518,9 +518,8 @@ DebugAMiscompilation(BugDriver &BD,
// 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.