Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20050131-1.c
blob9fae91181d5be69f9fa9fd457887a21b7c4a3841
1 /* Verify that we do not lose side effects on a MOD expression. */
3 #include <stdlib.h>
4 #include <stdio.h>
6 int
7 foo (int a)
9 int x = 0 % a++;
10 return a;
13 main()
15 if (foo (9) != 10)
16 abort ();
17 exit (0);