modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20020709-1.c (about) 1 extern double atof (__const char *__nptr) __attribute__ ((__pure__)); 2 3 void bar (char *s) 4 { 5 union {double val; unsigned int a, b;} u; 6 u.val = atof (s); 7 }