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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
nested-func-6.c
blob
3bae4db352e72bad568906fa1adf66cf4695f9ae
1
/* { dg-do compile } */
2
/* { dg-options "-O -Winline" } */
3
4
static
inline
int
foo1
(
int
a
)
5
{
/* { dg-bogus "function not inlinable" } */
6
void
bar1
(
int
b
)
7
{}
8
return
a
;
9
}
10
11
int
foo2
(
int
a
)
12
{
13
return
foo1
(
a
);
14
}