From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 133493858412; Thu, 26 Jan 2023 06:10:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 133493858412 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1674713405; bh=0Xo9qxHV3zh5FwTR1ZTdTJYTjwbQxCLZlgiOHwNwhjU=; h=From:To:Subject:Date:From; b=Wep4VwYi+YDVGfiq+L/bkIrNXXLD3TYpfPjkF+JfgmOrJXTCEsB9IAqnHcOoasqb7 N7ec9pl/m7TOnGWKxxrWFVe8d+iQi3amBmloa43N5sqKFz6F5veR06QuE//WqJyWR+ WQYIxZiTSxwjZ8P3cloLC21PS2DtmwVnvdLyp4Ws= 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: fd9673deea478839fd5a91ce8131e9d7a963de18 X-Git-Newrev: 7e2b842316f1c4d77d23b833a59a9d5281e04525 Message-Id: <20230126061005.133493858412@sourceware.org> Date: Thu, 26 Jan 2023 06:10:05 +0000 (GMT) List-Id: https://gcc.gnu.org/g:7e2b842316f1c4d77d23b833a59a9d5281e04525 commit 7e2b842316f1c4d77d23b833a59a9d5281e04525 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