Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr92644.C
blob: 2f8a86f1fdbb024bb4da0357a8992c958b14d5ce [
file
] [
log
] [
blame
]
// PR tree-optimization/92644
// { dg-do compile { target c++14 } }
// { dg-options "-O2 -fno-early-inlining" }
inline
auto
foo
()
{
return
nullptr
;
}
int
bar
()
{
return
foo
()
?
1
:
0
;
}