From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 94822 invoked by alias); 3 Aug 2015 21:19: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 94188 invoked by uid 89); 3 Aug 2015 21:19: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-io0-f179.google.com Received: from mail-io0-f179.google.com (HELO mail-io0-f179.google.com) (209.85.223.179) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 03 Aug 2015 21:19:01 +0000 Received: by ioea135 with SMTP id a135so157329326ioe.1 for ; Mon, 03 Aug 2015 14:18:59 -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=fe7mXQlxIIfaT4t/aQ3ZBWd1PTnRXcnnwTEV5WUszG0=; b=UC7SHI7EfsbPgwK1Xr3zp3BvoSeaH5mWwdiUIZdKGs8C0dfc61ir52fFk3Ba+mCQ7t FtmNZLEM1ejYW5eEYsy3sHvQ8roYadGFIFnDJj0KxNKh0tAQKqFzDfELg/nacKV5pXhR 2C9DFTbg5qgetKYmdUvtIE5Hcv+u/7fenXHKGOI+CkLV72OvZnUGYVcRhWETw08MOfEw rJPwamV/GiZE9vfhtaB8v7CQYuV15kcoK2SLae1/LqXg1R2OucyQLVXpQdv5NFedXvyP WF9G3Bc8MH0dTSvjVntSrhv49YFxv5S2djqrZQhQUIMBsYSASmi/ubUPXGq311jbovBw X+YQ== X-Gm-Message-State: ALoCoQk5EYv0w6Rd/FTOBh6ydTCZr7BKCr5K20XAVrcgaKPbRzC2wPpoqHT71GBUQwuQVT2/VFyY MIME-Version: 1.0 X-Received: by 10.107.134.78 with SMTP id i75mr143116iod.88.1438636739293; Mon, 03 Aug 2015 14:18:59 -0700 (PDT) Received: by 10.79.102.133 with HTTP; Mon, 3 Aug 2015 14:18:59 -0700 (PDT) Date: Mon, 03 Aug 2015 21:19:00 -0000 Message-ID: Subject: libgo patch committed: Fix type of RawSockaddr Data field for PPC From: Ian Lance Taylor To: gcc-patches , "gofrontend-dev@googlegroups.com" Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-08/txt/msg00127.txt.bz2 The gc compiler determines the type of the Data field in the syscall.RawSockaddr type by looking at the system header files. The gccgo library just has a fixed definition for it. Unfortunately the fixed definition does not match the header files on PPC64 systems. This is https://golang.org/issue/11469 . This patch from Lynn Boger fixes this. Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline. Ian