(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
t.c
       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