From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id ADD8B3858001; Wed, 8 Dec 2021 18:26:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ADD8B3858001 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/marxin/heads/loop-unswitch-improvement-v7)] Fix thinko. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/users/marxin/heads/loop-unswitch-improvement-v7 X-Git-Oldrev: 337c312bf6d1bf69cae352affc4605f809f905f5 X-Git-Newrev: cd77a026c8bb1002253d15774e06ab9055a7946c Message-Id: <20211208182632.ADD8B3858001@sourceware.org> Date: Wed, 8 Dec 2021 18:26:32 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Dec 2021 18:26:32 -0000 https://gcc.gnu.org/g:cd77a026c8bb1002253d15774e06ab9055a7946c commit cd77a026c8bb1002253d15774e06ab9055a7946c Author: Martin Liska Date: Tue Dec 7 16:13:05 2021 +0100 Fix thinko. Diff: --- gcc/tree-ssa-loop-unswitch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-ssa-loop-unswitch.c b/gcc/tree-ssa-loop-unswitch.c index c1a3f899d98..33fd7bad6d9 100644 --- a/gcc/tree-ssa-loop-unswitch.c +++ b/gcc/tree-ssa-loop-unswitch.c @@ -554,7 +554,7 @@ evaluate_control_stmt_using_entry_checks (gimple *stmt, int_range_max path_range; if (find_range_for_lhs (predicate_path, lhs, path_range) - && path_range.undefined_p () + && !path_range.undefined_p () && fold_range (r, stmt, path_range) && r.singleton_p ()) return r.zero_p () ? boolean_false_node : boolean_true_node;