Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 920604-1.c
blobd7d9be13fd81145e5cff509721ca47a2e849c4c2
1 long long
2 mod (a, b)
3 long long a, b;
5 return a % b;
8 int
9 main ()
11 mod (1LL, 2LL);
12 exit (0);