repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
builtin-unreachable-1.C
blob
f6a5577032eb6dbf076672b09c5b80318f7c925f
1
// PR c++/40445
2
// Check that a function containing only __builtin_unreachable()
3
// doesn't ICE.
4
5
// { dg-do compile }
6
// { dg-options "-O0" }
7
const char *
8
f (void)
9
{
10
__builtin_unreachable ();
11
}