From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 88AB839450F9; Sun, 25 Jul 2021 01:43:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 88AB839450F9 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: e2b5b936e3fd1fab3cb0a7cdb580a677712300ea X-Git-Newrev: 532a9c8e3f7cf72f3f41b5b399d049f4dbcec911 Message-Id: <20210725014319.88AB839450F9@sourceware.org> Date: Sun, 25 Jul 2021 01:43:19 +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: Sun, 25 Jul 2021 01:43:19 -0000 https://gcc.gnu.org/g:532a9c8e3f7cf72f3f41b5b399d049f4dbcec911 commit 532a9c8e3f7cf72f3f41b5b399d049f4dbcec911 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 f9a3c92a115..c99eb82d7f4 100644 --- a/gcc/ipa-strub.c +++ b/gcc/ipa-strub.c @@ -1334,7 +1334,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;