rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20020709-1.c

8 lines
158 B
C

extern double atof (__const char *__nptr) __attribute__ ((__pure__));
void bar (char *s)
{
union {double val; unsigned int a, b;} u;
u.val = atof (s);
}