From patchwork Tue Oct 11 21:30:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 119073 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 14BAFB6F65 for ; Wed, 12 Oct 2011 08:30:45 +1100 (EST) Received: (qmail 25812 invoked by alias); 11 Oct 2011 21:30:37 -0000 Received: (qmail 25799 invoked by uid 22791); 11 Oct 2011 21:30:35 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RP_MATCHES_RCVD, SPF_HELO_PASS, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (74.125.121.67) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 11 Oct 2011 21:30:17 +0000 Received: from wpaz33.hot.corp.google.com (wpaz33.hot.corp.google.com [172.24.198.97]) by smtp-out.google.com with ESMTP id p9BLUFJZ000497 for ; Tue, 11 Oct 2011 14:30:15 -0700 Received: from pzd13 (pzd13.prod.google.com [10.243.17.205]) by wpaz33.hot.corp.google.com with ESMTP id p9BLPRNE012425 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Tue, 11 Oct 2011 14:30:14 -0700 Received: by pzd13 with SMTP id 13so80145pzd.11 for ; Tue, 11 Oct 2011 14:30:13 -0700 (PDT) Received: by 10.68.38.231 with SMTP id j7mr21772991pbk.106.1318368613776; Tue, 11 Oct 2011 14:30:13 -0700 (PDT) Received: by 10.68.38.231 with SMTP id j7mr21772963pbk.106.1318368613515; Tue, 11 Oct 2011 14:30:13 -0700 (PDT) Received: from coign.google.com ([2620:0:1000:2301:21c:25ff:fe14:8d86]) by mx.google.com with ESMTPS id o6sm251940pbb.1.2011.10.11.14.30.12 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 11 Oct 2011 14:30:13 -0700 (PDT) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org Subject: Go patch committed: Correct ChangeLog and spacing Date: Tue, 11 Oct 2011 14:30:11 -0700 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 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 committed this patch to mainline to remove an incorrect ChangeLog entry (the gofrontend directory lives elsewhere; gcc/go/ChangeLog only applies to the files in gcc/go outside of gcc/go/gofrontend) and to fix spacing in a Go frontend file. Ian Index: gofrontend/gogo-tree.cc =================================================================== --- gofrontend/gogo-tree.cc (revision 179825) +++ gofrontend/gogo-tree.cc (working copy) @@ -69,7 +69,7 @@ define_builtin(built_in_function bcode, libname, NULL_TREE); if (const_p) TREE_READONLY(decl) = 1; - set_builtin_decl (bcode, decl, true); + set_builtin_decl(bcode, decl, true); builtin_functions[name] = decl; if (libname != NULL) { Index: ChangeLog =================================================================== --- ChangeLog (revision 179825) +++ ChangeLog (working copy) @@ -1,13 +1,3 @@ -2011-10-11 Michael Meissner - - * gofrontend/gogo-tree.cc (define_builtin): Delete old interface - with two parallel arrays to hold standard builtin declarations, - and replace it with a function based interface that can support - creating builtins on the fly in the future. Change all uses, and - poison the old names. Make sure 0 is not a legitimate builtin - index. - (Gogo::make_trampoline(tree): Ditto. - 2011-08-24 Roberto Lublinerman * lang.opt: Add fgo-optimize-.