From patchwork Fri Nov 19 17:58:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Jambor X-Patchwork-Id: 47944 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id AB86C385C41A for ; Fri, 19 Nov 2021 17:58:26 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id A3BAF385800C for ; Fri, 19 Nov 2021 17:58:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A3BAF385800C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id D660A1FD32; Fri, 19 Nov 2021 17:58:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1637344687; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type; bh=8AFg4FXO08jV55Kxk6kFwQSfDZh8u3ROr5YcvzXFpEY=; b=NCTxwLB/m5IUjVNAezsYR5ES7ymCwEBaUurqymNfs/ndRCcGcKTvZkCgGHATn5FUeLqMk6 PQQx+S2JRInVbg56mbfXVEEbEaN4fLSgvw2z/AcMTbnhZ0A8mE03IHdgPbegogTE3uP6Mk l21+iesJUhOUf3MFTSKmiRGamOmbO5M= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1637344687; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type; bh=8AFg4FXO08jV55Kxk6kFwQSfDZh8u3ROr5YcvzXFpEY=; b=ypmdm7qgPwqoU237dACMBRcHbDNYpY60g4F8m74UWRrwXTHxuc3RMllkux/2pS/k9Ox0aZ 6lUFG4+g+1y1brDw== Received: from suse.cz (virgil.suse.cz [10.100.13.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id AF725A3B8D; Fri, 19 Nov 2021 17:58:07 +0000 (UTC) From: Martin Jambor To: GCC Patches Subject: [wwwdocs PATCH]: Add a caveat that -Ofast implies -fno-semantic-interposition User-Agent: Notmuch/0.34.1 (https://notmuchmail.org) Emacs/27.2 (x86_64-suse-linux-gnu) Date: Fri, 19 Nov 2021 18:58:07 +0100 Message-ID: MIME-Version: 1.0 X-Spam-Status: No, score=-11.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jan Hubicka Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" Hi, can I add the following caveat to the gcc-12/changes.html file? Thanks, Martin diff --git a/htdocs/gcc-12/changes.html b/htdocs/gcc-12/changes.html index 5f0214bd..fd7af717 100644 --- a/htdocs/gcc-12/changes.html +++ b/htdocs/gcc-12/changes.html @@ -72,6 +72,8 @@ a work-in-progress.

be removed in the next release. All ports now default to emit DWARF (version 2 or later) debugging info or are obsoleted. +
  • The optimization level -Ofast now implies + -fno-semantic-interposition.