From patchwork Mon Jul 9 08:11:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 941150 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-481201-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="kqKdwtyY"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41PJ5806lcz9s00 for ; Mon, 9 Jul 2018 18:14:02 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; q=dns; s= default; b=lS9dtMe8gqf13lSdEHFrwY1Qq4Y5qIHYdZ/1uGncEpDXQZ+rdLgPg n11OKD1TSUgeN0GL8FqV9r4MPDecG2wB3Of1bLP3QxbFVLNft5rp7wcYsS+/SHpX xVmZGLOY3IXJalF2CjjamwGFJEgMuIQ8mY3uUd4b1ajJO9JHS0QuBk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; s= default; bh=dBv985IvDjx87+uaMW7lL9TUbec=; b=kqKdwtyYNNx0M5UQoZ6E CBlIhxYofHHkjvJ0K8u7WeBQA9k14h1ijfR54GOIgMqEwb79qLoQIx3Byu5RywHp iRmM9/N4DhkiCBlrotl5IY2FdmNk7i/mdU8jAza/jWFKxqjd7zR38fUt2gPBkDa4 UnKmwmgcnByKcTptuwSHDNs= Received: (qmail 107387 invoked by alias); 9 Jul 2018 08:13:31 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 98745 invoked by uid 89); 9 Jul 2018 08:11:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy=H*F:D*cz X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 09 Jul 2018 08:11:41 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 1B192ADFC for ; Mon, 9 Jul 2018 08:11:39 +0000 (UTC) From: =?utf-8?q?Martin_Li=C5=A1ka?= Subject: [PATCH][OBVIOUS] Add missing Optimization attribute. To: gcc-patches@gcc.gnu.org Message-ID: <2bcef64c-5904-2b82-8a82-472266824a2f@suse.cz> Date: Mon, 9 Jul 2018 10:11:38 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 X-IsSubscribed: yes Hi. I'm putting back what I accidentally removed. Martin gcc/ChangeLog: 2018-07-09 Martin Liska * common.opt: Add back wrongly removed attribute. --- gcc/common.opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/common.opt b/gcc/common.opt index 963c37f04cd..c29abdb5cb1 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -987,7 +987,7 @@ Common Report Var(flag_align_loops) Optimization Align the start of loops. falign-loops= -Common RejectNegative Joined Var(str_align_loops) +Common RejectNegative Joined Var(str_align_loops) Optimization fargument-alias Common Ignore