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
Corrected date in changelog
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr47443.c
blob
5a5c43f253736618dd185f44fbbf43ebe3abcd0d
1
/* PR tree-optimization/47443 */
2
/* { dg-do compile } */
3
/* { dg-require-stack-check "generic" } */
4
/* { dg-options "-O -fstack-check=generic" } */
5
6
static
inline
int
bar
(
char
*
c
,
int
i
)
7
{
8
return
c
+
i
>
c
;
9
}
10
11
int
foo
()
12
{
13
char
c
[
100
];
14
return
(
bar
(
c
,
1
));
15
}