]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/builtin-unreachable-4.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / builtin-unreachable-4.c
CommitLineData
ba21aba3
DD
1/* Check that this valid code doesn't ICE. */
2/* { dg-do compile } */
3/* { dg-options "-O2" } */
4void
5g (int a, int b, int c, int d)
6{
7 if (d)
8 {
9 ((void)
10 (!(a && b && c) ? __builtin_unreachable (), 0 : 0));
11 }
12 ((void)
13 (!(a && b && c) ? __builtin_unreachable (), 0 : 0));
14}