OSDN Git Service

* gcc.c-torture/execute/20000412-1.c: Reduce some more.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 920604-1.c
1 long long
2 mod (a, b)
3      long long a, b;
4 {
5   return a % b;
6 }
7
8 int
9 main ()
10 {
11   mod (1LL, 2LL);
12   exit (0);
13 }