From: Chris Lattner Date: Wed, 17 Mar 2004 17:37:18 +0000 (+0000) Subject: Fix an inverted condition that causes us to think that loop extraction X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7fa44fca308a0f8d13d981c2460ddb6de5a7b667;p=oota-llvm.git Fix an inverted condition that causes us to think that loop extraction accomplished something when it really did not. This does not fix the bigger problem tho. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12469 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ExtractFunction.cpp b/tools/bugpoint/ExtractFunction.cpp index e8fe499ffdd..5119c801a02 100644 --- a/tools/bugpoint/ExtractFunction.cpp +++ b/tools/bugpoint/ExtractFunction.cpp @@ -141,7 +141,7 @@ Module *BugDriver::ExtractLoop(Module *M) { // Check to see if we created any new functions. If not, no loops were // extracted and we should return null. - if (M->size() != NewM->size()) { + if (M->size() == NewM->size()) { delete NewM; return 0; }