From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1075) id 2415D3858C50; Tue, 23 Apr 2024 13:51:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2415D3858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713880319; bh=2Qceq/hVi7absLj+SVBwg3Rdl8+82R1iw4wdKK7o16g=; h=From:To:Subject:Date:From; b=Gix8mJozWFKYCbAhkn4TF0cLBCuyc2O9Xq3LCRE+jddtlfkkibZPce6faxNDkY/nw J4u8wGmnC/9g1hPwxUSbQ5v1gokcIo2MsFzSuNW3NK8MIa3Gky+3rPG/cfxmA/Asnl UPLb6uXSzGIrpTUWQ46yemn9fLRtozgAc3wK4M+k= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jan Hubicka To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-10093] Remove repeated information in -ftree-loop-distribute-patterns doc X-Act-Checkin: gcc X-Git-Author: Jan Hubicka X-Git-Refname: refs/heads/master X-Git-Oldrev: f99409459270831685f043987f8d09b9510ccabe X-Git-Newrev: 6f0a646dd2fc59e9c9cde63718b36085f84a19ba Message-Id: <20240423135159.2415D3858C50@sourceware.org> Date: Tue, 23 Apr 2024 13:51:59 +0000 (GMT) List-Id: https://gcc.gnu.org/g:6f0a646dd2fc59e9c9cde63718b36085f84a19ba commit r14-10093-g6f0a646dd2fc59e9c9cde63718b36085f84a19ba Author: Jan Hubicka Date: Tue Apr 23 15:51:42 2024 +0200 Remove repeated information in -ftree-loop-distribute-patterns doc We have: -ftree-loop-distribute-patterns Perform loop distribution of patterns that can be code generated with calls to a library. This flag is enabled by default at -O2 and higher, and by -fprofile-use and -fauto-profile. This pass distributes the initialization loops and generates a call to memset zero. For example, the loop ... and the initialization loop is transformed into a call to memset zero. This flag is enabled by default at -O3. It is also enabled by -fprofile-use and -fauto-profile. Which mentions optimizatoin flags twice and the repeated mention is out of date, since we enable this option at -O2 as well. gcc/ChangeLog: * doc/invoke.texi (-ftree-loop-distribute-patterns): Remove duplicated sentence about optimization flags implying this. Diff: --- gcc/doc/invoke.texi | 2 -- 1 file changed, 2 deletions(-) diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 2a35dc7ac75..27c31ab0c86 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -13852,8 +13852,6 @@ DO I = 1, N ENDDO @end smallexample and the initialization loop is transformed into a call to memset zero. -This flag is enabled by default at @option{-O3}. -It is also enabled by @option{-fprofile-use} and @option{-fauto-profile}. @opindex floop-interchange @item -floop-interchange