xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/20020709-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 extern double atof (__const char *__nptr) __attribute__ ((__pure__));
2 
bar(char * s)3 void bar (char *s)
4 {
5   union {double val; unsigned int a, b;} u;
6   u.val = atof (s);
7 }
8