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
MMIX: Correct handling of C23 (...) functions, PR117618
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fail_always_inline.c
blob
16a549ca0935fd4dc331f6bdbf2e963bf1c3c4d9
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 unless also declared .inline." } */
6
7
void
8
f
()
9
{
10
bar
();
11
}
12