OSDN Git Service

Scan "lea\[lq\]?\[ \t\]" instead of "lea\[ \t\]".
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / fpcvt-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -march=k8 -mfpmath=sse" } */
3 /* { dg-final { scan-assembler "cvtsi2sd" } } */
4 /* Check that conversions will get folded.  */
5 double
6 t(short a)
7 {
8   float b=a;
9   return b;
10 }