From patchwork Tue Dec 21 11:58:52 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicola Pero X-Patchwork-Id: 76281 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 DBC9EB7063 for ; Tue, 21 Dec 2010 22:59:03 +1100 (EST) Received: (qmail 31407 invoked by alias); 21 Dec 2010 11:59:02 -0000 Received: (qmail 31396 invoked by uid 22791); 21 Dec 2010 11:59:01 -0000 X-SWARE-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL, BAYES_00, SARE_SUB_ENC_UTF8, TW_BJ, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (140.186.70.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 21 Dec 2010 11:58:58 +0000 Received: from eggs.gnu.org ([140.186.70.92]:53682) by fencepost.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1PV0rl-0004bL-6Y for gcc-patches@gnu.org; Tue, 21 Dec 2010 06:58:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PV0rm-0002P5-5f for gcc-patches@gnu.org; Tue, 21 Dec 2010 06:58:56 -0500 Received: from smtp181.iad.emailsrvr.com ([207.97.245.181]:51673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PV0rm-0002O4-3e for gcc-patches@gnu.org; Tue, 21 Dec 2010 06:58:54 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp38.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id F04DD34858B for ; Tue, 21 Dec 2010 06:58:52 -0500 (EST) Received: from dynamic1.wm-web.iad.mlsrvr.com (dynamic1.wm-web.iad1a.rsapps.net [192.168.2.150]) by smtp38.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id DBC85348487 for ; Tue, 21 Dec 2010 06:58:52 -0500 (EST) Received: from meta-innovation.com (localhost [127.0.0.1]) by dynamic1.wm-web.iad.mlsrvr.com (Postfix) with ESMTP id CC2AFC98070 for ; Tue, 21 Dec 2010 06:58:52 -0500 (EST) Received: by www2.webmail.us (Authenticated sender: nicola.pero@meta-innovation.com, from: nicola.pero@meta-innovation.com) with HTTP; Tue, 21 Dec 2010 12:58:52 +0100 (CET) Date: Tue, 21 Dec 2010 12:58:52 +0100 (CET) Subject: =?UTF-8?Q?libobjc:=20header=20cleanup=20for=20new=20API=20(16)?= From: "Nicola Pero" To: "gcc-patches@gnu.org" MIME-Version: 1.0 X-Type: plain Message-ID: <1292932732.830121477@192.168.2.228> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) 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 In stage 1 I removed NXConstantString references from linking.m, but forgot to remove the include. This patch fixes it. Committed. Thanks Index: linking.m =================================================================== --- linking.m (revision 168108) +++ linking.m (working copy) @@ -25,7 +25,6 @@ #include "objc-private/common.h" #include -#include /* Generate references to Object class since it is needed by the runtime system to run correctly. */ Index: ChangeLog =================================================================== --- ChangeLog (revision 168111) +++ ChangeLog (working copy) @@ -1,4 +1,8 @@ 2010-12-21 Nicola Pero + + * linking.m: Do not include objc/NXConstStr.h. + +2010-12-21 Nicola Pero * objc-private/runtime.h (DEBUG_PRINTF): Moved from here ... * objc-private/common.h (DEBUG_PRINTF): To here.