From: Diego Trevino Ferrer Date: Wed, 14 Aug 2019 20:34:12 +0000 (+0000) Subject: [Bugpoint redesign] Reduced scope of variables in Delta implementation X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62927b4e5f755d20b55c63aa92470b79089e0b47;p=llvm [Bugpoint redesign] Reduced scope of variables in Delta implementation Summary: This diff also changed the check in `Delta.cpp` to verify interesting-ness, so it exits when the input isn't interesting Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D66251 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368915 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-reduce/deltas/Delta.cpp b/tools/llvm-reduce/deltas/Delta.cpp index cf8d88424e2..d33c8e39bf3 100644 --- a/tools/llvm-reduce/deltas/Delta.cpp +++ b/tools/llvm-reduce/deltas/Delta.cpp @@ -115,16 +115,15 @@ void llvm::runDeltaPass( outs() << "\nNothing to reduce\n"; return; } + if (!Test.run(Test.getReducedFilepath())) { + outs() << "\nInput isn't interesting! Verify interesting-ness test\n"; + exit(1); + } std::vector Chunks = {{1, Targets}}; std::set UninterestingChunks; std::unique_ptr ReducedProgram; - if (!Test.run(Test.getReducedFilepath())) { - outs() << "\nInput isn't interesting! Verify interesting-ness test\n"; - return; - } - if (!increaseGranularity(Chunks)) { outs() << "\nAlready at minimum size. Cannot reduce anymore.\n"; return;