From patchwork Thu Aug 7 18:49:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John David Anglin X-Patchwork-Id: 377925 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 D0A551400B9 for ; Fri, 8 Aug 2014 04:50:25 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:from:to:content-type:subject:mime-version:date; q= dns; s=default; b=ytTywQRQ61uwh3p4UdE9QfyldCef05lu0XffnWD4Y9p/KA kijiqOCe7DSbOasldA+B/0g3U8jFqWueZlUZQzkvk+KeYOgBUsY3Fveym1rNaYxz E2r13MUR/75aDxT8GsEqRqVdN4Ri+QHqAfJw0yp8FHA9dj5hq3z89n10BLYUM= 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 :message-id:from:to:content-type:subject:mime-version:date; s= default; bh=wN9EaCO1GCt2pyZ0IVYIAY+sGeY=; b=WrGahmHDo3kWGibsM39W etJbmYH5Vzqle+Tz7lWipOL0drCqt4WwnivkFvX1RMY03V2bfnc3MaPpAdzmwAZh Hlm52UdIWq0yiJUQQECmDCsh+9XeTRTw8X7Psq8dSA37+Katlj13UYiEiVfPTao5 /mDTlnOdynwZgonuGj5TZFY= Received: (qmail 8110 invoked by alias); 7 Aug 2014 18:50:18 -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 8101 invoked by uid 89); 7 Aug 2014 18:50:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, MSGID_FROM_MTA_HEADER, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 X-HELO: BLU004-OMC3S12.hotmail.com Received: from blu004-omc3s12.hotmail.com (HELO BLU004-OMC3S12.hotmail.com) (65.55.116.87) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA256 encrypted) ESMTPS; Thu, 07 Aug 2014 18:50:17 +0000 Received: from BLU436-SMTP68 ([65.55.116.72]) by BLU004-OMC3S12.hotmail.com with Microsoft SMTPSVC(7.5.7601.22712); Thu, 7 Aug 2014 11:50:15 -0700 X-TMN: [ycAoHpBZr0nWKcd0qXjdO8o9B6JEm5Pg] Message-ID: Received: from [192.168.2.16] ([70.26.30.52]) by smtphm.sympatico.ca over TLS secured channel with Microsoft SMTPSVC(8.0.9200.16384); Thu, 7 Aug 2014 11:50:13 -0700 From: John David Anglin To: GCC Patches Subject: [committed] Fix alignment in gcc.dg/memcpy-5.c on hppa*-*-hpux* MIME-Version: 1.0 (Apple Message framework v936) Date: Thu, 7 Aug 2014 14:49:57 -0400 Tested on hppa2.0-hp-hpux11.11 and hppa64-hp-hpux11.11. Committed to trunk. Dave --- John David Anglin dave.anglin@bell.net 2014-08-07 John David Anglin * gcc.dg/memcpy-5.c: Add -fno-common option on hppa*-*-hpux*. Index: gcc.dg/memcpy-5.c =================================================================== --- gcc.dg/memcpy-5.c (revision 213683) +++ gcc.dg/memcpy-5.c (working copy) @@ -1,4 +1,5 @@ /* { dg-options "-O -fdump-tree-optimized" } */ +/* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */ extern void *memcpy (void *, const void *, __SIZE_TYPE__);