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
PR target/55146
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
winline-1.c
blob
ac2ae82427a9e61d554c6192bf2fde3414a23a55
1
/* { dg-do compile } */
2
/* { dg-options "-Winline -O2" } */
3
4
void
q
(
void
);
5
inline
int
t
(
void
)
6
{
7
int
ret
;
8
q
();
9
ret
=
t
();
/* We define sane semantics for inline keyword on recursive
10
functions, so do not warn here. */
11
q
();
12
return
ret
;
13
}