From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6253 invoked by alias); 27 May 2011 14:26:14 -0000 Received: (qmail 6216 invoked by uid 22791); 27 May 2011 14:26:13 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 27 May 2011 14:25:59 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 5B85FCB0291; Fri, 27 May 2011 16:25:58 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ar25fXla2qQo; Fri, 27 May 2011 16:25:55 +0200 (CEST) Received: from [192.168.1.2] (bon31-9-83-155-120-49.fbx.proxad.net [83.155.120.49]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 51786CB0243; Fri, 27 May 2011 16:25:55 +0200 (CEST) From: Eric Botcazou To: Richard Guenther Subject: Re: [PATCH] Fix PR49189 Date: Fri, 27 May 2011 16:42:00 -0000 User-Agent: KMail/1.9.9 Cc: gcc-patches@gcc.gnu.org References: In-Reply-To: MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_1R73NP0N+nFxjzC" Message-Id: <201105271625.57276.ebotcazou@adacore.com> 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 X-SW-Source: 2011-05/txt/msg02176.txt.bz2 --Boundary-00=_1R73NP0N+nFxjzC Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 516 > 2011-05-27 Richard Guenther > > PR middle-end/49189 > * fold-const.c (fold_unary_loc): Do not re-fold folding conversions > of comparisons. > > * gnat.dg/bit_packed_array5.adb: New testcase. > * gnat.dg/bit_packed_array5.ads: Likewise. Thanks a lot! I managed to mess up the dg stuff... fixed thusly, applied. 2011-05-27 Eric Botcazou * gnat.dg/bit_packed_array5.ads: Move dg directive to... * gnat.dg/bit_packed_array5.adb: ...here. -- Eric Botcazou --Boundary-00=_1R73NP0N+nFxjzC Content-Type: text/x-diff; charset="iso 8859-15"; name="p.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="p.diff" Content-length: 634 Index: gnat.dg/bit_packed_array5.adb =================================================================== --- gnat.dg/bit_packed_array5.adb (revision 174335) +++ gnat.dg/bit_packed_array5.adb (working copy) @@ -1,3 +1,5 @@ +-- { dg-do compile } + with System; package body Bit_Packed_Array5 is Index: gnat.dg/bit_packed_array5.ads =================================================================== --- gnat.dg/bit_packed_array5.ads (revision 174335) +++ gnat.dg/bit_packed_array5.ads (working copy) @@ -1,5 +1,3 @@ --- { dg-do compile } - package Bit_Packed_Array5 is type Bit_Array is array (Integer range <>) of Boolean; --Boundary-00=_1R73NP0N+nFxjzC--