From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 9488238582B0; Fri, 20 Oct 2023 03:48:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9488238582B0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697773727; bh=aJxcX7MStd/iY4FL3+lA5quo9e5h5M34jHGYvtpozqM=; h=From:To:Subject:Date:From; b=wHBXyWH+5nZ/fPP1z4FN3EEiDfOj5/2eiMs9yHyH0Rwm+Jr52U0dDwgo5yWrIvX7g MLeQPbUdYMAYHud5KueIezmIUQHaJaMjfdXEZXh6nW8PeLHV48JlQCLoWdMEDMwkSX 4NaQO/z9ilqTudi2EZJfIIAdpWthw12NMBe1itz4= 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: 29c83c9cb47ab56b08ddb06603f7726d62065501 X-Git-Newrev: d7036fc7f68e04fee52e821d832011f06901a2e6 Message-Id: <20231020034847.9488238582B0@sourceware.org> Date: Fri, 20 Oct 2023 03:48:47 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d7036fc7f68e04fee52e821d832011f06901a2e6 commit d7036fc7f68e04fee52e821d832011f06901a2e6 Author: Alexandre Oliva Date: Thu Oct 19 02:53:12 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 861cd0cffa0e..876828ad4317 100644 --- a/gcc/ipa-strub.cc +++ b/gcc/ipa-strub.cc @@ -1898,20 +1898,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 @@ -2339,16 +2331,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); @@ -2357,12 +2342,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));