From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 85259 invoked by alias); 1 Sep 2015 23:40:37 -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 85246 invoked by uid 89); 1 Sep 2015 23:40:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mail-qk0-f175.google.com Received: from mail-qk0-f175.google.com (HELO mail-qk0-f175.google.com) (209.85.220.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 01 Sep 2015 23:40:35 +0000 Received: by qkdv1 with SMTP id v1so60357147qkd.0 for ; Tue, 01 Sep 2015 16:40:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-type:content-transfer-encoding; bh=NxtNumHjmrrRTi5ybmx/J8ORbNKa/jQbvZeTiIF5QEA=; b=cqScDO1TorGudx4H3a7w4fS4IR6yD8yBZmGh7CiESSSk9Z4Yjtu2YIRrBlCkxGAg+3 yg/u2sQp7+muehsUwY1GhGxFfs8VIYXOz0jV9k5jwP31jLJjx4VwcSdr8VFNIgbmgGjF aZqIyQI8ZiNZrhMy9EwKXVpX1tbryQdQd4Uydk/yGfxXaCMCri/yRnwGLIbIJGEQjthb Fhv8fvQ3LsldVlyFzr/IUrUFRuZGTw4jjjAb6LkWdxlgRRrSAEaHUEDXXVYMVrKSuM5P s3McCslSscUOGRJzg87NuKxCDHxQYu0QuFkmiLluC6nWMysddpClxXrzu6NSrHgunM9/ r4XQ== X-Gm-Message-State: ALoCoQmwi1EJUCCZeeK3noLL9nV0fO/7XlQi+CEg1EWRmWS5oJ54B536+DHUiJW6lNpx+MrwUpso X-Received: by 10.55.217.84 with SMTP id u81mr23625307qki.76.1441150833093; Tue, 01 Sep 2015 16:40:33 -0700 (PDT) Received: from moria.site (pool-98-113-149-214.nycmny.fios.verizon.net. [98.113.149.214]) by smtp.googlemail.com with ESMTPSA id f85sm11685627qhc.38.2015.09.01.16.40.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 01 Sep 2015 16:40:32 -0700 (PDT) To: gcc-patches , Mike Stump From: Kenneth Zadeck Subject: fixed misplaced testcase Message-ID: <55E6376F.10504@naturalbridge.com> Date: Tue, 01 Sep 2015 23:40:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-09/txt/msg00107.txt.bz2 2015-09-01 Kenneth Zadeck * gcc.c-torture/execute/ieee/20000320-1.c Fixed misplaced test case. This was approved offline by Mike Stump. committed as revision 227389. Kenny --- gcc/testsuite/gcc.c-torture/execute/ieee/20000320-1.c (revision 227385) +++ gcc/testsuite/gcc.c-torture/execute/ieee/20000320-1.c (working copy) @@ -35,10 +35,10 @@ int main() || sizeof (double) != sizeof (ull)) exit (0); - c(0x3690000000000000ULL, 0x00000000U); #if (defined __arm__ || defined __thumb__) && ! (defined __ARMEB__ || defined __VFP_FP__) /* The ARM always stores FP numbers in big-wordian format, even when running in little-byteian mode. */ + c(0x0000000036900000ULL, 0x00000000U); c(0x0000000136900000ULL, 0x00000001U); c(0xffffffff369fffffULL, 0x00000001U); c(0x0000000036A00000ULL, 0x00000001U); @@ -61,6 +61,7 @@ int main() c(0x5000000038100000ULL, 0x00800002U); c(0x5000000138100000ULL, 0x00800003U); #else + c(0x3690000000000000ULL, 0x00000000U); c(0x3690000000000001ULL, 0x00000001U); c(0x369fffffffffffffULL, 0x00000001U); c(0x36A0000000000000ULL, 0x00000001U);