From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id AFA8B398802F; Thu, 22 Jul 2021 10:01:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AFA8B398802F 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/strub)] enable strub for all viable functions by default, for testing X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/strub X-Git-Oldrev: ad784422308d24953ac2f2fddf922eba3fe60c97 X-Git-Newrev: 0dadcd92b516fa7e66611da26ca002e59fad00ea Message-Id: <20210722100106.AFA8B398802F@sourceware.org> Date: Thu, 22 Jul 2021 10:01:06 +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: Thu, 22 Jul 2021 10:01:06 -0000 https://gcc.gnu.org/g:0dadcd92b516fa7e66611da26ca002e59fad00ea commit 0dadcd92b516fa7e66611da26ca002e59fad00ea Author: Alexandre Oliva Date: Thu Jul 22 06:57:27 2021 -0300 enable strub for all viable functions by default, for testing Diff: --- gcc/ipa-strub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/ipa-strub.c b/gcc/ipa-strub.c index 5adf3916983..5a8c0c80479 100644 --- a/gcc/ipa-strub.c +++ b/gcc/ipa-strub.c @@ -1314,7 +1314,7 @@ pass_ipa_strub_mode::execute (function *) /* If no strub flag was given in the command line, set the actual default. */ if (flag_strub == -2) - flag_strub = -1; + flag_strub = 3; // for testing only; was: -1; bool any_strub = false;