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
/
cpp0x
/
pr83897.C
blob
26a37d1e07ffe7417650b3eefbb8f83b481d33ba
1
// PR c++/83897
2
// { dg-do compile { target c++11 } }
3
// { dg-options "-O2 -fdump-tree-gimple" }
4
// { dg-final { scan-tree-dump-not "__builtin_unreachable" "gimple" } }
5
6
struct A {};
7
struct B { int a; int b = 5; };
8
9
A
10
bar (B)
11
{
12
return {};
13
}