From patchwork Mon Nov 22 02:00:56 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nathan Froyd X-Patchwork-Id: 72493 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 2B74DB712A for ; Mon, 22 Nov 2010 13:01:17 +1100 (EST) Received: (qmail 28743 invoked by alias); 22 Nov 2010 02:01:12 -0000 Received: (qmail 28717 invoked by uid 22791); 22 Nov 2010 02:01:09 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD, UPPERCASE_50_75 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; Mon, 22 Nov 2010 02:01:01 +0000 Received: (qmail 11317 invoked from network); 22 Nov 2010 02:00:58 -0000 Received: from unknown (HELO codesourcery.com) (froydnj@127.0.0.2) by mail.codesourcery.com with ESMTPA; 22 Nov 2010 02:00:58 -0000 Date: Sun, 21 Nov 2010 21:00:56 -0500 From: Nathan Froyd To: gcc-patches@gcc.gnu.org Subject: really poison FUNCTION_ARG_BOUNDARY Message-ID: <20101122020055.GW24469@nightcrawler> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-IsSubscribed: yes 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 My recent hookization of FUNCTION_ARG_BOUNDARY forgot the hunk that actually poisoned the macro in system. The patch below fixes it. Committed as obvious. -Nathan * system.h (FUNCTION_ARG_BOUNDARY): Really poison. Index: system.h =================================================================== --- system.h (revision 167020) +++ system.h (working copy) @@ -784,7 +784,8 @@ extern void fancy_abort (const char *, i ASM_DECLARE_CONSTANT_NAME MODIFY_TARGET_NAME SWITCHES_NEED_SPACES \ SWITCH_CURTAILS_COMPILATION SWITCH_TAKES_ARG WORD_SWITCH_TAKES_ARG \ TARGET_OPTION_TRANSLATE_TABLE HANDLE_PRAGMA_PACK_PUSH_POP \ - HANDLE_SYSV_PRAGMA HANDLE_PRAGMA_WEAK CONDITIONAL_REGISTER_USAGE + HANDLE_SYSV_PRAGMA HANDLE_PRAGMA_WEAK CONDITIONAL_REGISTER_USAGE \ + FUNCTION_ARG_BOUNDARY /* Hooks that are no longer used. */ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \