i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr99253.c
blob3e8d865dc428c0be69aeedb4c2cd577ea0bc36a8
1 #include "tree-vect.h"
3 int a = 0;
4 static int b = 0;
5 long c = 0;
7 int
8 main()
10 check_vect ();
11 for (int d = 0; d < 8; d++)
13 a ^= c;
14 b = a;
15 a ^= 1;
17 if (a != 0 || b != 1)
18 __builtin_abort();
19 return 0;