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
/
fail_always_inline.c
blob
86645b850de86d6401bd6a7d750788b6f1e9f577
1
/* { dg-do compile } */
2
/* { dg-add-options bind_pic_locally } */
3
4
extern
__attribute__
((
always_inline
))
void
5
bar
() { }
/* { dg-warning "function might not be inlinable" } */
6
7
void
8
f
()
9
{
10
bar
();
11
}
12