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
* gcc.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
winline-7.c
blob
bab82a2d6822adffd85ff04964f42d407bde01be
1
/* { dg-do compile } */
2
/* { dg-options "-Winline -O2" } */
3
4
extern
void
*
alloca
(
__SIZE_TYPE__
);
5
6
void
big
(
void
);
7
inline
void
*
q
(
void
)
8
{
/* { dg-warning "(function not inlinable|alloca)" } */
9
return
alloca
(
10
);
10
}
11
inline
void
*
t
(
void
)
12
{
13
return
q
();
/* { dg-warning "called from here" } */
14
}