Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ccp-33.c
blob753676994e43de0084c2cfa4745e221944faa771
1 /* { dg-do link } */
2 /* { dg-options "-O" } */
4 extern void link_error ();
5 int a[256];
6 void foo(int n)
8 int *p;
9 for (p = a; n != 0; --n, ++p)
11 if ((__SIZE_TYPE__)p & (__alignof__ (int) - 1))
12 link_error ();
14 int main()
16 return 0;