blob: 3a34f6788a9cb2aef152e75d775905c54e0d452d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile } */
/* { dg-options "-O1 -fno-ipa-pure-const" } */
void __attribute__((noreturn)) bar(void) {
__builtin_unreachable ();
}
int p;
void foo() {
if (p) bar();
}
|