From patchwork Wed Dec 1 16:02:10 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 73843 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 99683B70A7 for ; Thu, 2 Dec 2010 03:02:23 +1100 (EST) Received: (qmail 31883 invoked by alias); 1 Dec 2010 16:02:20 -0000 Received: (qmail 31873 invoked by uid 22791); 1 Dec 2010 16:02:19 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 01 Dec 2010 16:02:13 +0000 Received: (qmail 8931 invoked from network); 1 Dec 2010 16:02:11 -0000 Received: from unknown (HELO digraph.polyomino.org.uk) (joseph@127.0.0.2) by mail.codesourcery.com with ESMTPA; 1 Dec 2010 16:02:11 -0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.72) (envelope-from ) id 1PNp8E-0001ZH-69 for gcc-patches@gcc.gnu.org; Wed, 01 Dec 2010 16:02:10 +0000 Date: Wed, 1 Dec 2010 16:02:10 +0000 (UTC) From: "Joseph S. Myers" To: gcc-patches@gcc.gnu.org Subject: Expand opts.c comment on tm.h include Message-ID: MIME-Version: 1.0 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 I found some more target macros used in opts.c beyond those I'd previously listed in a comment on the tm.h include. I've applied this patch as obvious to mention further target macros in that comment. Index: ChangeLog =================================================================== --- ChangeLog (revision 167338) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2010-12-01 Joseph Myers + + * opts.c: Expand comment on tm.h include. + 2010-12-01 Yao Qi * config/arm/predicates.md ("vfp_register_operand"): Return true for Index: opts.c =================================================================== --- opts.c (revision 167338) +++ opts.c (working copy) @@ -23,8 +23,9 @@ #include "system.h" #include "intl.h" #include "coretypes.h" -#include "tm.h" /* Needed by rtl.h and used for DWARF2_DEBUGGING_INFO - and DBX_DEBUGGING_INFO. */ +#include "tm.h" /* Needed by rtl.h and used for STACK_CHECK_BUILTIN, + STACK_CHECK_STATIC_BUILTIN, DEFAULT_GDB_EXTENSIONS, + DWARF2_DEBUGGING_INFO and DBX_DEBUGGING_INFO. */ #include "rtl.h" /* Needed by insn-attr.h. */ #include "opts.h" #include "options.h"