From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 6ABFE3857700; Fri, 6 Oct 2023 04:29:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6ABFE3857700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1696566579; bh=SCQEjJCjXNEn8CZ/NhkGRFXBz5HuCVU+rGJRI4JIAIY=; h=From:To:Subject:Date:From; b=EP4Bk5/XLeJzpX+aZQj8EyxrZWEQvFq6jwGU8ac0HCd0SlK9ndB5ghKKD/KEjuwbn /fcfUfG8JZYM6VwTbnb7uti+k/nIBXWCZ42WfSmPZ5ybAlVo7MQflLhOJ5hqLWng+S yD1AdwKjOQ3ZUyqWBBkuw3+EckXTlMNXh9q2b6o4= 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: 1d4e505ea6a19c86cff497e03ad5e9a100a2a404 X-Git-Newrev: d42e4a102c8829eb732b40b88b6d1226d4d8d6fc Message-Id: <20231006042939.6ABFE3857700@sourceware.org> Date: Fri, 6 Oct 2023 04:29:39 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d42e4a102c8829eb732b40b88b6d1226d4d8d6fc commit d42e4a102c8829eb732b40b88b6d1226d4d8d6fc 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 861cd0cffa0..876828ad431 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));