modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20000718.c (about)

     1  extern double foo(double, double);
     2  extern void bar(float*, int*);
     3  
     4  void
     5  baz(int* arg)
     6  {
     7      float tmp = (float)foo(2.0,1.0);
     8      unsigned i;
     9      short junk[64];
    10  
    11      for (i=0; i<10; i++, arg++) {
    12          bar(&tmp, arg);
    13      }
    14  }