Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / pr22335-1.c
bloba2a760bfc964d5c48d6255b993aae9e6651f00bf
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdelete-null-pointer-checks" } */
3 int t(int *a)
5 int i;
6 *a = 1;
7 i = a == 0;
8 return i;