modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/pr67929_1.c (about) 1 int __attribute__ ((noinline, noclone)) 2 foo (float a) 3 { 4 return a * 4.9f; 5 } 6 7 8 int 9 main (void) 10 { 11 if (foo (10.0f) != 49) 12 __builtin_abort (); 13 14 return 0; 15 }