From patchwork Fri Sep 24 18:15:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicola Pero X-Patchwork-Id: 65674 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 C0ED0B711D for ; Sat, 25 Sep 2010 04:15:14 +1000 (EST) Received: (qmail 15269 invoked by alias); 24 Sep 2010 18:15:11 -0000 Received: (qmail 15258 invoked by uid 22791); 24 Sep 2010 18:15:09 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, TW_BJ X-Spam-Check-By: sourceware.org Received: from smtp151.iad.emailsrvr.com (HELO smtp151.iad.emailsrvr.com) (207.97.245.151) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 24 Sep 2010 18:15:04 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp45.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id A7C0790298 for ; Fri, 24 Sep 2010 14:15:02 -0400 (EDT) Received: from dynamic2.wm-web.iad.mlsrvr.com (dynamic2.wm-web.iad1a.rsapps.net [192.168.2.151]) by smtp45.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id 93E7590194 for ; Fri, 24 Sep 2010 14:15:02 -0400 (EDT) Received: from meta-innovation.com (localhost [127.0.0.1]) by dynamic2.wm-web.iad.mlsrvr.com (Postfix) with ESMTP id 785E928E806E for ; Fri, 24 Sep 2010 14:15:02 -0400 (EDT) Received: by www2.webmail.us (Authenticated sender: nicola.pero@meta-innovation.com, from: nicola.pero@meta-innovation.com) with HTTP; Fri, 24 Sep 2010 20:15:02 +0200 (CEST) Date: Fri, 24 Sep 2010 20:15:02 +0200 (CEST) Subject: Objc - remove obsolete comment From: "Nicola Pero" To: gcc-patches@gcc.gnu.org MIME-Version: 1.0 X-Type: plain Message-ID: <1285352102.48567330@192.168.2.229> 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 Ok to apply ? Thanks Index: objc-act.c =================================================================== --- objc-act.c (revision 164584) +++ objc-act.c (working copy) @@ -20,26 +20,6 @@ You should have received a copy of the GNU General along with GCC; see the file COPYING3. If not see . */ - -/* Purpose: This module implements the Objective-C 4.0 language. - - compatibility issues (with the Stepstone translator): - - - does not recognize the following 3.3 constructs. - @requires, @classes, @messages, = (...) - - methods with variable arguments must conform to ANSI standard. - - tagged structure definitions that appear in BOTH the interface - and implementation are not allowed. - - public/private: all instance variables are public within the - context of the implementation...I consider this to be a bug in - the translator. - - statically allocated objects are not supported. the user will - receive an error if this service is requested. - - code generation `options': - - */ - #include "config.h" #include "system.h" #include "coretypes.h" Index: ChangeLog =================================================================== --- ChangeLog (revision 164584) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2010-09-24 Nicola Pero + + * objc-act.c: Removed historical, obsolete comment at the top of + the file. + 2010-09-21 Nicola Pero PR objc/23710