From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 6D62B3858409; Thu, 26 Jan 2023 03:37:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6D62B3858409 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1674704230; bh=X2Z2gq2XuCWWPBGW2lPs/1zPOhj61Ub9pthS2lsXKzE=; h=From:To:Subject:Date:From; b=N3KxY9I4e1qgl9QH/BaT5+sRufHAMEXObDeYvCb4rOhzc1OGWM26natUs1HEirUEb /BybSE7r8uoN37uIaxxdHTIsTTv3ky0dwMACbwao9dn163/tCfs50o2CwZM1MyHy4I z73XJ2V0GvqoVfRJD8ILRBddo7V8JnTzz1L6oR10= 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)] [testing] enable -finline-memset-loops by default X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: d82adc21442ccf03a3937084b1de3dd518989da8 X-Git-Newrev: a791ae9f56d0bfbe167933e929aefc9f8a0c26ba Message-Id: <20230126033710.6D62B3858409@sourceware.org> Date: Thu, 26 Jan 2023 03:37:10 +0000 (GMT) List-Id: https://gcc.gnu.org/g:a791ae9f56d0bfbe167933e929aefc9f8a0c26ba commit a791ae9f56d0bfbe167933e929aefc9f8a0c26ba Author: Alexandre Oliva Date: Sat Jan 14 08:44:23 2023 -0300 [testing] enable -finline-memset-loops by default Diff: --- gcc/common.opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/common.opt b/gcc/common.opt index ad85e8ca6ac..ba32f334d26 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -1875,7 +1875,7 @@ Common Var(flag_inline_atomics) Init(1) Optimization Inline __atomic operations when a lock free instruction sequence is available. finline-stringops -Common RejectNegative Enum(ilsop_fn) Var(flag_inline_stringops, ILSOP_ALL) Enum(ilsop_fn) Init(ILSOP_NONE) Optimization Undocumented +Common RejectNegative Enum(ilsop_fn) Var(flag_inline_stringops, ILSOP_ALL) Enum(ilsop_fn) Init(ILSOP_ALL) Optimization Undocumented fno-inline-stringops Common RejectNegative Enum(ilsop_fn) Var(flag_inline_stringops, ILSOP_NONE) Enum(ilsop_fn) Optimization Undocumented