From patchwork Fri Apr 29 17:38:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Diego Novillo X-Patchwork-Id: 93470 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 CC7B3B6FC5 for ; Sat, 30 Apr 2011 03:38:46 +1000 (EST) Received: (qmail 13564 invoked by alias); 29 Apr 2011 17:38:45 -0000 Received: (qmail 13291 invoked by uid 22791); 29 Apr 2011 17:38:43 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 29 Apr 2011 17:38:27 +0000 Received: from wpaz37.hot.corp.google.com (wpaz37.hot.corp.google.com [172.24.198.101]) by smtp-out.google.com with ESMTP id p3THcQNC025430 for ; Fri, 29 Apr 2011 10:38:26 -0700 Received: from tobiano.tor.corp.google.com (tobiano.tor.corp.google.com [172.29.41.6]) by wpaz37.hot.corp.google.com with ESMTP id p3THcP3f029726 for ; Fri, 29 Apr 2011 10:38:26 -0700 Received: by tobiano.tor.corp.google.com (Postfix, from userid 54752) id AA1ADAE1DE; Fri, 29 Apr 2011 13:38:25 -0400 (EDT) Date: Fri, 29 Apr 2011 13:38:25 -0400 From: Diego Novillo To: gcc-patches@gcc.gnu.org Subject: [google] Add missing reference numbers to ChangeLogs Message-ID: <20110429173824.GA15417@google.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-System-Of-Record: true 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 I forgot to update the ChangeLog entries with the reference numbers in my previous patches. Committed to google/main. Diego. diff --git a/gcc/ChangeLog.google-main b/gcc/ChangeLog.google-main index 771435b..dfebff2 100644 --- a/gcc/ChangeLog.google-main +++ b/gcc/ChangeLog.google-main @@ -19,6 +19,8 @@ 2011-04-27 Le-Chun Wu + Google ref 42718. + * doc/extend.texi (Wnonnull): Add documentation for C++. * doc/invoke.texi (Wnonnull): Add documentation for C++. @@ -29,6 +31,8 @@ 2011-04-27 Le-Chun Wu + Google ref 39127. + * c-decl.c (warn_if_shadowing): Use the warning code corresponding to the given -Wshadow- variant. * common.opt (Wshadow-local): New option. @@ -39,6 +43,8 @@ 2011-04-27 Silvius Rus + Google ref 39984. + * doc/invoke.texi (fno-strict-enum-precision): Document. * gimplify.c (gimplify_switch_expr): If -fno-strict-enum-precision is given, do not consider enum diff --git a/gcc/c-family/ChangeLog.google-main b/gcc/c-family/ChangeLog.google-main index a6a66e0..c328b63 100644 --- a/gcc/c-family/ChangeLog.google-main +++ b/gcc/c-family/ChangeLog.google-main @@ -1,14 +1,20 @@ 2011-04-27 Le-Chun Wu + Google ref 45339. + * c-common.c (handle_nonnull_attribute): Check whether the nonnull attribute is applied to the 'this' pointer for non-static methods. 2011-04-27 Le-Chun Wu + Google ref 42718. + * c.opt (Wnonnull): Enable for C++. 2011-04-27 Le-Chun Wu + Google ref 39133. + * c.opt (Wreal-conversion): New flag. * c-common.c (conversion_warning): Use it. * c-opts.c (c_common_post_options): Initialize it. diff --git a/gcc/cp/ChangeLog.google-main b/gcc/cp/ChangeLog.google-main index eb35c74..607fd72 100644 --- a/gcc/cp/ChangeLog.google-main +++ b/gcc/cp/ChangeLog.google-main @@ -1,17 +1,23 @@ 2011-04-28 Diego Novillo Le-Chun Wu + Google ref 40484. + * call.c (conversion_null_warnings): Also handle assignments when warning about NULL conversions. 2011-04-27 Le-Chun Wu + Google ref 39127. + * name-lookup.c (pushdecl_maybe_friend): When emitting a shadowing warning, use the code corresponding to the given -Wshadow- variant. 2011-04-27 Le-Chun Wu + Google ref 40484. + * cp-tree.h (LOOKUP_EXPLICIT_TMPL_ARGS): Define. * call.c (build_new_function_call): Set it for TEMPLATE_ID_EXPRs. (build_over_call): Use it to determine whether to emit a NULL diff --git a/gcc/testsuite/ChangeLog.google-main b/gcc/testsuite/ChangeLog.google-main index 3a76097..1518b7b 100644 --- a/gcc/testsuite/ChangeLog.google-main +++ b/gcc/testsuite/ChangeLog.google-main @@ -1,3 +1,10 @@ +2011-04-29 Diego Novillo + + Google ref 40484. + + * g++.old-deja/g++.other/null3.C: Expect warning about + converting boolean to a pointer. + 2011-04-28 Diego Novillo * g++.dg/other/no-strict-enum-precision-1.C: Re-indent using GNU style. @@ -15,6 +22,8 @@ 2011-04-28 Le-Chun Wu + Google ref 40484. + * g++.dg/warn/Wconversion-null-2.C: Do not expect a NULL warning in implicitly instantiated templates. @@ -54,19 +63,27 @@ 2011-04-27 Le-Chun Wu + Google ref 45339. + * g++.dg/warn/nonnull2.C: New. 2011-04-27 Le-Chun Wu + Google ref 42718. + * g++.dg/warn/Wnonnull-1.C: New. 2011-04-27 Le-Chun Wu + Google ref 39133. + * g++.dg/warn/Wreal-conversion-1.C: New. * gcc.dg/Wreal-conversion-1.c: New. 2011-04-27 Le-Chun Wu + Google ref 39127. + * g++.dg/warn/Wshadow-compatible-local-1.C: New. * g++.dg/warn/Wshadow-local-1.C: New. * g++.dg/warn/Wshadow-local-2.C: New. @@ -77,11 +94,15 @@ 2011-04-27 Le-Chun Wu + Google ref 40484. + * g++.dg/warn/Wnull-conversion-1.C: New. * g++.dg/warn/Wnull-conversion-2.C: New. 2011-04-27 Silvius Rus + Google ref 39984. + * g++.dg/other/no-strict-enum-precision-1.C: New. * g++.dg/other/no-strict-enum-precision-2.C: New. * g++.dg/other/no-strict-enum-precision-3.C: New.