From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id B106C3858C74; Thu, 26 Jan 2023 05:17:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B106C3858C74 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1674710274; bh=pFCwgqnhDdk00JnNJfEnddGNLNCzBG9uuG1U8CemKws=; h=From:To:Subject:Date:From; b=JOsVl6KA7Wt50vBdg8XSzsaD7gA38jAEcC6iD0oj+pSIv6vScQ6IpaRwU41j4oLyQ RG5Getqpu3S9qGt/SAW2wMpXiXBhER4Oopktg3LC+DnUY9ckwvIIZDqzQAqvS5cFgF jL+FhOlk2TNsYqgp4wulPssSVASjvms6YTeR+iG8= 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: 87147caf4eadff1b779896ddc22b8a0201b9d98e X-Git-Newrev: 50fb697275feb07341693092c042a0c179534666 Message-Id: <20230126051754.B106C3858C74@sourceware.org> Date: Thu, 26 Jan 2023 05:17:54 +0000 (GMT) List-Id: https://gcc.gnu.org/g:50fb697275feb07341693092c042a0c179534666 commit 50fb697275feb07341693092c042a0c179534666 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