From patchwork Sat Feb 4 00:33:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John David Anglin X-Patchwork-Id: 723972 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vFZTk1HSRz9s76 for ; Sat, 4 Feb 2017 11:33:29 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="IYXOk3i+"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:date:subject:to:message-id:mime-version; q=dns; s= default; b=n1AnjTTVX3JlmrEzKVdKTakwryiwnh6Y+CHzDLkGfnU/U8QTLwl8U yLhfqaxCVtX0ikQmIWwZZPqwZDvwydCp3i3T2YnihfqbQccOWuhEkL5M1tIebkaa RdCakogj6/l8xdAuxZN6xOhlreciojgcwso6tlJYs3nQqNisuBcYEo= 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:from :content-type:date:subject:to:message-id:mime-version; s= default; bh=3b7CG003V5NPJJpNHkIl7Dssa9k=; b=IYXOk3i+J040nXcmjLn8 2ubz/e396yLFxJF2QdFw9bbhcquHYD04MtEEp0vfl4K1ktZI/3Q+7/+heYEgUFi+ 1vyGUHMXzxypAiUbDdzSEj9UzFzcQZR4TQ0e8OxSYSWU83vrJs1oZr8B4c+q7UBh VUOlohvJNsDT1USHsrG/NXs= Received: (qmail 22098 invoked by alias); 4 Feb 2017 00:33:22 -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 22084 invoked by uid 89); 4 Feb 2017 00:33:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS, UNPARSEABLE_RELAY autolearn=ham version=3.3.2 spammy=objext X-HELO: torfep01.bell.net Received: from simcoe207srvr.owm.bell.net (HELO torfep01.bell.net) (184.150.200.207) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 04 Feb 2017 00:33:11 +0000 Received: from bell.net torfep01 184.150.200.158 by torfep01.bell.net with ESMTP id <20170204003309.HXNF15349.torfep01.bell.net@torspm01.bell.net> for ; Fri, 3 Feb 2017 19:33:09 -0500 Received: from [192.168.2.10] (really [174.91.91.98]) by torspm01.bell.net with ESMTP id <20170204003309.KWXM27192.torspm01.bell.net@[192.168.2.10]>; Fri, 3 Feb 2017 19:33:09 -0500 From: John David Anglin Date: Fri, 3 Feb 2017 19:33:09 -0500 Subject: [committed] Add gcc/function-tests.o to compare_exclusions for 32-bit hppa*-*-hpux*. To: GCC Patches Message-Id: Mime-Version: 1.0 (Apple Message framework v1085) Depending on the bootstrap compiler and configure options, we sometimes get a compare failure for gcc/function-tests.o on 32-bit hppa*-*-hpux*. The problem is a "_GLOBAL__F_" label containing a "random" string. For example, .EXPORT _GLOBAL__F_.._.._gcc_gcc_function_tests.c_DFF67DD7_0xb048e3,DATA _GLOBAL__F_.._.._gcc_gcc_function_tests.c_DFF67DD7_0xb048e3: The attached change adds gcc/function-tests.o to the compare exclusions for hppa*-*-hpux*. Tested on hppa2.0w-hp-hpux11.11. Committed to trunk. Dave --- John David Anglin dave.anglin@bell.net 2017-02-03 John David Anglin * configure.ac: Add gcc/function-tests.o to compare_exclusions for 32-bit hppa*-*-hpux*. * configure: Regenerate. Index: configure.ac =================================================================== --- configure.ac (revision 245137) +++ configure.ac (working copy) @@ -3509,7 +3509,7 @@ compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/*" case "$target" in hppa*64*-*-hpux*) ;; - hppa*-*-hpux*) compare_exclusions="gcc/cc*-checksum\$(objext) | */libgcc/lib2funcs* | gcc/ada/*tools/*" ;; + hppa*-*-hpux*) compare_exclusions="gcc/cc*-checksum\$(objext) | */libgcc/lib2funcs* | gcc/ada/*tools/* | gcc/function-tests.o" ;; powerpc*-ibm-aix*) compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/* | *libgomp*\$(objext)" ;; esac AC_SUBST(compare_exclusions)