From patchwork Mon Feb 13 22:21:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 141007 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 2612AB6FD1 for ; Tue, 14 Feb 2012 09:21:03 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1329776464; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Date: From:To:Subject:Message-ID:MIME-Version:Content-Type: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=Y0y5ldSPv5o0oy+ETZHJ SX+47sI=; b=TumjKikfNRIOZvxXZYjfwblfjOaSYMWpdGuO+5x2vJqqK8VrQ1B2 55D814sDw6ntOfRVCvjjQuxxSQ4Uvp5fJGZ5zy/9hZPtQEwgN3lBK8fu2++JtV+t DlD2OyYbj1cpPXeR7W+Rt/T64Pc194Y2vft3YXFQwoPajH68wxOYvd0= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Date:From:To:Subject:Message-ID:MIME-Version:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=QQ0rOV3jrnXwtnjqGD/W3b0O+QUCqcdiGWn1Mu6MZ4TBWMWcMaW1CSAc0JVYWI MVyo4WrcSbHp4lzYYzc/S3m0ltyrjemS0PcXRRSxJ5RKdtjcc5LbIB1CYXOaKFBP SYlXmEOYE6s6uJSHvrSm0zVN5lrYcryQyU0cDbLBpX5/M=; Received: (qmail 12340 invoked by alias); 13 Feb 2012 22:20:58 -0000 Received: (qmail 12320 invoked by uid 22791); 13 Feb 2012 22:20:57 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 13 Feb 2012 22:20:44 +0000 Received: from ip-2-205-96-143.web.vodafone.de (ip-2-205-96-143.web.vodafone.de [2.205.96.143]) by ainaz.pair.com (Postfix) with ESMTPSA id 7CAA63F416 for ; Mon, 13 Feb 2012 17:20:42 -0500 (EST) Date: Mon, 13 Feb 2012 23:21:58 +0100 (CET) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [wwwdocs] Use dependent instead of dependant Message-ID: MIME-Version: 1.0 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 Per http://gcc.gnu.org/codingconventions.html we should use dependent, not dependant. This fixes this for the new GCC 4.7 porting notes as well as one old news entry. Committed. Gerald Index: gcc-4.7/porting_to.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/porting_to.html,v retrieving revision 1.7 diff -u -3 -p -r1.7 porting_to.html --- gcc-4.7/porting_to.html 27 Jan 2012 01:04:13 -0000 1.7 +++ gcc-4.7/porting_to.html 13 Feb 2012 22:17:27 -0000 @@ -106,7 +106,7 @@ Instead, use the POSIX macro _REEN

The C++ compiler no longer performs some extra unqualified lookups it had performed in the past, namely -dependant base class scope lookups +dependent base class scope lookups and unqualified template function lookups.

Index: news/ia32.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/news/ia32.html,v retrieving revision 1.6 diff -u -3 -p -r1.6 ia32.html --- news/ia32.html 21 Jan 2002 10:24:45 -0000 1.6 +++ news/ia32.html 13 Feb 2012 22:17:27 -0000 @@ -36,7 +36,7 @@ and focused on better optimization for t free registers and allocate them as scratches. This is a generalization of the PGCC -friscify pass. -
  • Recognition of extension-dependant GIVs. This shows up in a loop like +
  • Recognition of extension-dependent GIVs. This shows up in a loop like
             short s;
             for (s = 0; s < 10; ++s)
    @@ -48,7 +48,7 @@ and focused on better optimization for t
     
     
  • Recognition of certain forms of loop-carried post-decrement. Primarily,
    -        while (a--) { /* nothing dependant on a */ }
    +        while (a--) { /* nothing dependent on a */ }
     
    becomes