From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 103623 invoked by alias); 21 Aug 2016 09:50:49 -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 103603 invoked by uid 89); 21 Aug 2016 09:50:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=AWL,BAYES_00,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=1,16, float32x, float64x, float128x X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-out.m-online.net Received: from mail-out.m-online.net (HELO mail-out.m-online.net) (212.18.0.9) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 09:50:38 +0000 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3sHBlZ0Wf5z3hjSD; Sun, 21 Aug 2016 11:50:33 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3sHBlY4lt8zvkFN; Sun, 21 Aug 2016 11:50:33 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id SFZ7DYDhLUKY; Sun, 21 Aug 2016 11:50:31 +0200 (CEST) X-Auth-Info: fMRlxuPxFddhmdAztwTnqwQ66cKWbZlAr2w8Nu8NPOEvkXTQyxBS8wjaB2EGybGY Received: from linux.local (ppp-88-217-9-240.dynamic.mnet-online.de [88.217.9.240]) by mail.mnet-online.de (Postfix) with ESMTPA; Sun, 21 Aug 2016 11:50:31 +0200 (CEST) Received: by linux.local (Postfix, from userid 501) id B8BD61E5465; Sun, 21 Aug 2016 11:50:30 +0200 (CEST) From: Andreas Schwab To: Joseph Myers Cc: James Greenhalgh , , , , , , , , , , , , Subject: Re: Implement C _FloatN, _FloatNx types [version 6] References: <20160817154244.GA39270@arm.com> X-Yow: Yow! I want to mail a bronzed artichoke to Nicaragua! Date: Sun, 21 Aug 2016 09:50:00 -0000 In-Reply-To: (Joseph Myers's message of "Wed, 17 Aug 2016 20:17:07 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2016-08/txt/msg01476.txt.bz2 On Aug 17 2016, Joseph Myers wrote: > Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c > =================================================================== > --- gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c (nonexistent) > +++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c (working copy) > @@ -0,0 +1,16 @@ > +/* Test floating-point conversions. _Float128x type with TImode. */ > +/* { dg-do run } */ > +/* { dg-options "" } */ > +/* { dg-add-options float128x } */ > +/* { dg-require-effective-target float128x_runtime } */ > + > +#define __STDC_WANT_IEC_60559_TYPES_EXT__ > +#include > +#include "fp-int-convert.h" > + > +int > +main (void) > +{ > + TEST_I_F(TItype, UTItype, _Float128, FLT128X_MANT_DIG, FLT128X_MAX_EXP); s/_Float128/_Float128x/ > Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c > =================================================================== > --- gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c (nonexistent) > +++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c (working copy) > @@ -0,0 +1,16 @@ > +/* Test floating-point conversions. _Float32x type with TImode. */ > +/* { dg-do run } */ > +/* { dg-options "" } */ > +/* { dg-add-options float32x } */ > +/* { dg-require-effective-target float32x_runtime } */ > + > +#define __STDC_WANT_IEC_60559_TYPES_EXT__ > +#include > +#include "fp-int-convert.h" > + > +int > +main (void) > +{ > + TEST_I_F(TItype, UTItype, _Float32, FLT32X_MANT_DIG, FLT32X_MAX_EXP); s/_Float32/_Float32x/ > Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c > =================================================================== > --- gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c (nonexistent) > +++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c (working copy) > @@ -0,0 +1,16 @@ > +/* Test floating-point conversions. _Float64x type with TImode. */ > +/* { dg-do run } */ > +/* { dg-options "" } */ > +/* { dg-add-options float64x } */ > +/* { dg-require-effective-target float64x_runtime } */ > + > +#define __STDC_WANT_IEC_60559_TYPES_EXT__ > +#include > +#include "fp-int-convert.h" > + > +int > +main (void) > +{ > + TEST_I_F(TItype, UTItype, _Float64, FLT64X_MANT_DIG, FLT64X_MAX_EXP); s/_Float64/_Float64x/ Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."