From patchwork Thu Dec 27 16:35:00 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 1018944 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-493139-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=golang.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="GFZ6EtO1"; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=golang-org.20150623.gappssmtp.com header.i=@golang-org.20150623.gappssmtp.com header.b="sCJlSui3"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43Qb6g6Q8Lz9s3l for ; Fri, 28 Dec 2018 03:35:23 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=SYCvhv7OCXBfH16ms5Cnl241ztnfWkYxrw4lkHFqV46opl t+6iS3la6FiQBuw9j+4tlmWTRiWakA+W/SPkqcBxLkdin/p0nU/6hzF7ykN9990f x9Y4OAT3ySvOlyRD8TvMDADt8kk/3dYC3rEhQyYfkZhbq5gAun1i1B4/Swl1k= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=tcr6RhHtFnsiR5AypgRGUlf0xE4=; b=GFZ6EtO1DXicURhMWQ4N 8b/F5ggBzx9cA1Xjtg5vkEv8DIz8URVN/tIC6pHtmu2Uzv5dCZuMzpNHvrGMpkyL 7rHZMXJerAMucO+grgfNIEMARIlswGAbufSAT5ASyD7etX4n27GLalRJ85vV3IXn 9J/S2DkNeJlg+e7KppTi+Dg= Received: (qmail 88498 invoked by alias); 27 Dec 2018 16:35:16 -0000 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 Received: (qmail 88472 invoked by uid 89); 27 Dec 2018 16:35:16 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.1 required=5.0 tests=BAYES_00, GIT_PATCH_2, GIT_PATCH_3, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=rights X-HELO: mail-lf1-f47.google.com Received: from mail-lf1-f47.google.com (HELO mail-lf1-f47.google.com) (209.85.167.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 27 Dec 2018 16:35:14 +0000 Received: by mail-lf1-f47.google.com with SMTP id p6so13048577lfc.1 for ; Thu, 27 Dec 2018 08:35:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=golang-org.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=7NQqm0YtIyLaCl+jJhQTXls1PDvGGz5Fqu3sP+E0C1U=; b=sCJlSui3E3GWmnjRdgsh7/N+SpCULrZt7ECyJ8CPSFY27Fq8CcABPBmXU7OTP6iyR7 9jiMMccspoKSqTwxzBi59ugHRojYRVT7vc3WWyKmZKzgpGqTrs1lXvxW+1KUtMEI7Gqy Xgf/MMNNHt/i0BUoAqo3faTHGcaaRufyzxXvitJ5vrFPZM24CmIw87q1CPddFlykS6Pg jxMe5FPEz9mm7eawYS5DYpCDIfz4UUwTSN5ZnvIZ6yG51rIp0dU1qN60yXiaZwcWPT09 Br0OzAHXEAwGsh4Vjkz6R43DQH10xQ4FddFfMKyghYxVqnRTvkfWLdZ6Y0rAWIcuj93o aXQQ== MIME-Version: 1.0 From: Ian Lance Taylor Date: Thu, 27 Dec 2018 08:35:00 -0800 Message-ID: Subject: libgo patch committed: Delete runtime/export_arm_test.go To: gcc-patches , gofrontend-dev@googlegroups.com This patch by Cherry Zhang deletes runtime/export_arm_test.go. The only thing export_arm_test.go does is to export usplit, which does not exist in gccgo. Bootstrapped and ran Go testsuite on x86_64-pc-linux-gnu. Committed to mainline. Ian Index: gcc/go/gofrontend/MERGE =================================================================== --- gcc/go/gofrontend/MERGE (revision 267434) +++ gcc/go/gofrontend/MERGE (working copy) @@ -1,4 +1,4 @@ -5a9ff61d72c95a50cbbfb0e1bf57646197910363 +416baf55e4890acab244470f6457372987a17a68 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. Index: libgo/go/runtime/export_arm_test.go =================================================================== --- libgo/go/runtime/export_arm_test.go (revision 267433) +++ libgo/go/runtime/export_arm_test.go (nonexistent) @@ -1,9 +0,0 @@ -// Copyright 2015 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Export guts for testing. - -package runtime - -var Usplit = usplit