repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
auto-fn3.C
blob
4436e84bcd3e801ab7b9e0d507926df0cd0fc16e
1
// { dg-do compile { target c++14 } }
2
3
bool b;
4
auto f()
5
{
6
if (b)
7
return 42;
8
else
9
return f();
10
}