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

     1  #define B 95
     2  
     3  foo (a, b, p)
     4       unsigned a, b;
     5       int *p;
     6  {
     7    p[1] = a % B;
     8    p[0] = a / B;
     9  }
    10  
    11  bar (a, b, p)
    12       unsigned a, b;
    13       int *p;
    14  {
    15    p[0] = a / B;
    16    p[1] = a % B;
    17  }
    18