From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id F3D523858422; Wed, 8 Dec 2021 18:26:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F3D523858422 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)] Simplify irange condition. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/users/marxin/heads/loop-unswitch-improvement-v7 X-Git-Oldrev: 62f971c68492af83155787a6215698d0da88c756 X-Git-Newrev: f125dac9c948d102e555ac91fb7d7ebb992d7043 Message-Id: <20211208182652.F3D523858422@sourceware.org> Date: Wed, 8 Dec 2021 18:26:52 +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:53 -0000 https://gcc.gnu.org/g:f125dac9c948d102e555ac91fb7d7ebb992d7043 commit f125dac9c948d102e555ac91fb7d7ebb992d7043 Author: Martin Liska Date: Wed Dec 8 11:28:35 2021 +0100 Simplify irange condition. Diff: --- gcc/tree-ssa-loop-unswitch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gcc/tree-ssa-loop-unswitch.c b/gcc/tree-ssa-loop-unswitch.c index cb4be6d52e2..b083d990d4c 100644 --- a/gcc/tree-ssa-loop-unswitch.c +++ b/gcc/tree-ssa-loop-unswitch.c @@ -558,7 +558,6 @@ 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 () && fold_range (r, stmt, path_range) && r.singleton_p ()) return r.zero_p () ? boolean_false_node : boolean_true_node;