From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id C78373858039; Thu, 5 Oct 2023 07:37:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C78373858039 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1696491443; bh=lSc/sVoJg6YwL3iIgujrVr2wqpgXq5us7ozAt7swRa0=; h=From:To:Subject:Date:From; b=ScSDq9/MZZ2KVq0HvvlurQeEiPdPwuWioHatLurY/jF+c5N4uNX/LPtF4uX9lma+S N43+VUD/Clj3lbtOuDM9Sv464CnTMiL/x07l5la5CbLD8gHlAUrrvO3UOXEIFJcSp6 guUQSBVqjfeSILn4avwyHVJ29sJXZUgKqIe+ler0= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/aoliva/heads/testme)] strub: drop obsolete pp conditionals X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: 247741b3065548950ad3d2f7f8bdc2c8db8a08b5 X-Git-Newrev: 8413667c60c2460295e57e2ed9c4fd3e75f0393e Message-Id: <20231005073723.C78373858039@sourceware.org> Date: Thu, 5 Oct 2023 07:37:23 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8413667c60c2460295e57e2ed9c4fd3e75f0393e commit 8413667c60c2460295e57e2ed9c4fd3e75f0393e Author: Alexandre Oliva Date: Thu Oct 5 04:23:19 2023 -0300 strub: drop obsolete pp conditionals Diff: --- gcc/ipa-strub.cc | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/gcc/ipa-strub.cc b/gcc/ipa-strub.cc index 52f5761aa61..e4894026c82 100644 --- a/gcc/ipa-strub.cc +++ b/gcc/ipa-strub.cc @@ -1901,20 +1901,12 @@ build_ref_type_for (tree parm, bool nonaliased = true) set seems to not run afoul of this problem, and it hopefully enables the compiler to tell the pointers do point to objects that are not otherwise aliased. */ -#if 1 tree qref_type = build_variant_type_copy (ref_type); TYPE_ALIAS_SET (qref_type) = new_alias_set (); record_alias_subset (TYPE_ALIAS_SET (qref_type), get_alias_set (ref_type)); return qref_type; -#else - tree qref_type = build_qualified_type (ref_type, - TYPE_QUAL_RESTRICT - | TYPE_QUAL_CONST); - - return qref_type; -#endif } /* Add cgraph edges from current_function_decl to callees in SEQ with frequency @@ -2342,16 +2334,9 @@ pass_ipa_strub::adjust_at_calls_call (cgraph_edge *e, int named_args, vargs.quick_push (unshare_expr (swmp)); for (; i < nargs; i++) -#if 0 - if (!bitmap_bit_p (args_to_skip, i)) -#endif - vargs.quick_push (gimple_call_arg (stmt, i)); + vargs.quick_push (gimple_call_arg (stmt, i)); if (gimple_call_internal_p (stmt)) -#if 0 - new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt), - vargs); -#endif gcc_unreachable (); else new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs); @@ -2360,12 +2345,7 @@ pass_ipa_strub::adjust_at_calls_call (cgraph_edge *e, int named_args, if (gimple_call_lhs (stmt)) gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt)); -#if 0 - gimple_set_vuse (new_stmt, gimple_vuse (stmt)); - gimple_set_vdef (new_stmt, gimple_vdef (stmt)); -#else gimple_move_vops (new_stmt, stmt); -#endif if (gimple_has_location (stmt)) gimple_set_location (new_stmt, gimple_location (stmt));