From patchwork Mon May 12 20:53:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 348113 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 98EF0140082 for ; Tue, 13 May 2014 06:53:56 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; q=dns; s= default; b=Z4OgHEIi7CB06mdw4VYYSE3aBfYPzrlqxWmWG2aUhBcNSt6CsRvmM 05bjO5WwQMoUwhFPzKTIMyO7lJdVwf0quLBcwg5T5ivs3eA/m7og+nhEficHCxHg 1+rkpdQRSLRYZ0O1EwXnDiK5tv9oemTewwAlwx9zTiRXeFB+JMVh6c= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; s=default; bh=3UWJBGZFmNmbFUK4GxnIpnyGE7c=; b=RS0Q2Kp8oqOuSuRgpV4KoIgvYWCx NbDiccbId+J5RWHBP5JXmfI3dxs5SUkmJOwZ/ftVSV66UH5CD7Uul4xbK3kBHxEg jD0I8GT08JSsduifIzchUnisBLOfZR+aa6HWP9eC/XVoyU4cVe/xOS5gJ6rUZ/cW gW71ZhZgxKiDKQo= Received: (qmail 26924 invoked by alias); 12 May 2014 20:53:49 -0000 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 Received: (qmail 26913 invoked by uid 89); 12 May 2014 20:53:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GARBLED_BODY, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=no version=3.3.2 X-HELO: qmta12.emeryville.ca.mail.comcast.net Received: from qmta12.emeryville.ca.mail.comcast.net (HELO qmta12.emeryville.ca.mail.comcast.net) (76.96.27.227) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 12 May 2014 20:53:47 +0000 Received: from omta20.emeryville.ca.mail.comcast.net ([76.96.30.87]) by qmta12.emeryville.ca.mail.comcast.net with comcast id 16yi1o0041smiN4018tm7c; Mon, 12 May 2014 20:53:46 +0000 Received: from [IPv6:2601:9:5f80:ba4::1] ([IPv6:2601:9:5f80:ba4::1]) by omta20.emeryville.ca.mail.comcast.net with comcast id 18tl1o00F2nwLhK8g8tliY; Mon, 12 May 2014 20:53:46 +0000 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: [PATCH] Add a couple of dialect and warning options regarding Objective-C instance variable scope From: Mike Stump In-Reply-To: <535E2EF9.3070500@gmail.com> Date: Mon, 12 May 2014 13:53:25 -0700 Cc: "gcc-patches@gcc.gnu.org Patches" Message-Id: <2AE8F880-6ACF-42F8-9736-2268E3CCE9A4@comcast.net> References: <52F35508.4080205@gmail.com> <5486E33D-B8F6-473F-8F33-6A7DEECB45A8@comcast.net> <5359999C.7090607@gmail.com> <757BB622-2CA8-4C9A-BCA9-AAD1FDF8F14F@comcast.net> <535A8EA8.5040706@gmail.com> <80E7465A-6FE8-475D-873E-FF2F2C8EC2ED@comcast.net> <535E2EF9.3070500@gmail.com> To: Dimitris Papavasiliou X-IsSubscribed: yes I put in one small fix: Doing diffs in testsuite/objc.dg/ivar-visibility-4.m.~1~: ——————— --- testsuite/objc.dg/ivar-visibility-4.m.~1~ 2014-05-12 12:04:16.000000000 -0700 +++ testsuite/objc.dg/ivar-visibility-4.m 2014-05-12 13:50:53.000000000 -0700 @@ -29,7 +29,7 @@ { int a; - /* someivar is public so we shoudn't get any errors here. */ + /* someivar is public so we shouldn't get any errors here. */ a = object->someivar; }