Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.c-torture / compile / pr56571.c
1 /* { dg-options "-funroll-loops -ftracer" } */
2 int a, b;
3
4 int f(void)
5 {
6     (a % b) && f();
7     a = (0 || a | (a ? : 1));
8 }