* gcc.dg/i386-fpcvt-1.c: New test.

From-SVN: r62627
This commit is contained in:
Jan Hubicka 2003-02-10 13:12:56 +01:00 committed by Jan Hubicka
parent 63a3b0a700
commit 637df4f4ba
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Feb 10 11:41:20 CET 2003 Jan Hubicka <jh@suse.cz>
* gcc.dg/i386-fpcvt-1.c: New test.
2002-02-09 Richard Sandiford <rsandifo@redhat.com>
* gcc.c-torture/execute/20030209-1.c: New test.

View File

@ -0,0 +1,10 @@
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -march=k8 -mfpmath=sse" } */
/* { dg-final { scan-assembler "cvtsi2sd" } } */
/* Check that conversions will get folded. */
double
t(short a)
{
float b=a;
return b;
}