builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr88870.c
blob3f46f32f3ee9dd6d9f99764cc091f785e13e9155
1 /* PR rtl-optimization/88870 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fexceptions -fnon-call-exceptions -ftrapv -fno-tree-dominator-opts" } */
5 int a, b;
7 void
8 foo (int *x)
10 int c = 0;
12 int d;
13 x = &c;
14 for (;;)
16 x = &d;
17 b = 0;
18 d = c + 1;
19 b = c = 1;
20 ++a;