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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
winline-9.c
blob
6d9cba39d9afb1b12b210f54a38bf8580314ca35
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Winline --param large-stack-frame=10 --param large-stack-frame-growth=2 -fgnu89-inline" } */
3
4
int
a
,
b
;
5
void
test
(
char
*);
6
static
inline
7
int
aa
(
void
)
8
{
9
char
t
[
10
];
10
test
(
t
);
11
}
12
static
inline
13
int
bb
(
void
)
/* { dg-warning "large-stack-frame" } */
14
{
15
char
t
[
100
];
16
test
(
t
);
17
}
18
19
int
20
t
()
21
{
22
if
(
a
)
23
aa
();
24
if
(
b
)
25
bb
();
/* { dg-message "called from here" } */
26
}