From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 127478 invoked by alias); 29 Apr 2016 06:11:45 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 127457 invoked by uid 89); 29 Apr 2016 06:11:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:902, HX-Received:10.98.71.13 X-HELO: mail-pf0-f169.google.com Received: from mail-pf0-f169.google.com (HELO mail-pf0-f169.google.com) (209.85.192.169) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 29 Apr 2016 06:11:34 +0000 Received: by mail-pf0-f169.google.com with SMTP id y69so43806772pfb.1 for ; Thu, 28 Apr 2016 23:11:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:cc:date:message-id:mime-version; bh=8ps9q8n74Dw5YLA9v1mz/gNWadknnMS3W9OW/YVNKaQ=; b=asb+qJkDK4RTgOuynAcgWEvCt5byQ95Kq1eiiUNfadtB0HYvxvjZCA1BAKiDGyTK7i iudeAQNWaufwePI13Wga9WDZ+/Mps5jCNEzpsVkq18QGbHjNpOr0j9vrv98IszNSMYcI 9wBatHfidkUxXLKgGqkND+AszE/zYY4TI1RXOGnLWdHsV+1dQTGaIJw0IUmNJKmRbas3 ZgginvxeyTpM6TF67C/+ROJGo3ESLeTL/ltf/cgSXTDgwboJQUt64bzGz/wOY3s26pGK B76W9CFzf5I6DRdLokXWAUfoorZLYbyqmouN1I1uYbRvgkMiiPXtZTGTI9JZ4cm5uyh3 CuOA== X-Gm-Message-State: AOPr4FV49Rb9ZwXBly2tsUcFuHip37COI9r9UK99YeSk13vH8K+q7YbaYRblKpl0cAGfEg== X-Received: by 10.98.71.13 with SMTP id u13mr26593881pfa.123.1461910292409; Thu, 28 Apr 2016 23:11:32 -0700 (PDT) Received: from CzipperZeroArch ([2601:1c0:8101:b220:9444:7f:d93f:8904]) by smtp.gmail.com with ESMTPSA id lq10sm20104480pab.36.2016.04.28.23.11.31 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 Apr 2016 23:11:31 -0700 (PDT) From: Chris Gregory To: czipperz@gmail.com Subject: Re: [patch] Refactor macros out of gcc/config/i386.c CC: gcc-patches@gcc.gnu.org Date: Fri, 29 Apr 2016 06:11:00 -0000 Message-ID: <8760v13pws.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2016-04/txt/msg01926.txt.bz2 Adding the following to the beginning of ``i386-target-macros.c'' would be appreciated: /* Macros used for code generation on IA-32. Only used in i386.c Copyright (C) 1988-2016 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ -- Chris Gregory