From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58585 invoked by alias); 3 Aug 2015 18:54:02 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 58495 invoked by uid 89); 3 Aug 2015 18:54:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f170.google.com Received: from mail-ig0-f170.google.com (HELO mail-ig0-f170.google.com) (209.85.213.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 03 Aug 2015 18:53:59 +0000 Received: by igk11 with SMTP id 11so77988741igk.1 for ; Mon, 03 Aug 2015 11:53:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=G6f8La2vGRwe7DXXptMmvZx04mZ7Xinhg04jcIVPC8I=; b=cOupVvgMxhwyDzubsX5vgnz114QsJB+4TZZpVDMZefZCel3+BoS+W4zZQhaqKeIvUy Ooqqm9hO/xzIgEj4sK6i/o68S3vudo7z9zYznqbXtsysSvUmf1qd5WFPRt8WiaTZ9GA+ s0Qpdt5efYZJ66atgGe0K2XGvmrxXn6RzcRI5YCPqK9WINxynqPq3OwHijpqCCWc2f5P kxG7eAEsYjDfiDSsbJm9xcvECjPiqaJiX0VD1Fpy4z/CpaeqGQA3m0pbo/zX1mJHNvpJ Mqgvzm7UDwFrZJVpQ/efgQopGxWvV3YAIKJOczANzr4phEVrZR7Dil/2WB5lgUx+EtpD shzg== X-Gm-Message-State: ALoCoQmiAEdG/UyNIdjjpRhwPhy5iPWaGZrp9D/O2obx+NpMEgvNJS0HWKVEWQVLe+CyiHPw6r6/ MIME-Version: 1.0 X-Received: by 10.50.43.134 with SMTP id w6mr23190906igl.74.1438628037638; Mon, 03 Aug 2015 11:53:57 -0700 (PDT) Received: by 10.79.102.133 with HTTP; Mon, 3 Aug 2015 11:53:57 -0700 (PDT) Date: Mon, 03 Aug 2015 18:54:00 -0000 Message-ID: Subject: Go patch committed: Don't make erroneous type descriptors From: Ian Lance Taylor To: gcc-patches , "gofrontend-dev@googlegroups.com" Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-08/txt/msg00114.txt.bz2 This patch by Chris Manghane changes the Go frontend to not make type descriptor for named types if we have seen errors during the compilation. This avoids a compiler crash, and fixes https://golang.org/issue/11560 . Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline. Ian