tree-optimization/115597 - allow CSE of two-operator VEC_PERM nodes
[official-gcc.git] / gcc / testsuite / gcc.dg / guality / param-4.c
blob134dce7176be861b215b7477879c6f0e44d42c0f
1 /* { dg-do run } */
2 /* { dg-options "-g" } */
3 /* { dg-skip-if "" { *-*-* } { "*" } { "-O0" } } */
5 void
6 foo (int i)
8 int j = 0;
9 i = 1;
10 j = j + 1; /* BREAK */
13 int
14 main (void)
16 foo (0);
17 return 0;
20 /* { dg-final { gdb-test 10 "i" "1" } } */