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
PR target/55146
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr30045.c
blob
6dd22a1df7ab2a715291f92dbb9f56dc497b706c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-inline" } */
3
int
f
(
int
*
a
)
4
{
5
int
__attribute__
((
nonnull
(
1
)))
g
(
int
*
b
)
6
{
7
int
**
c
= &
a
;
8
if
(
b
)
9
return
*
a
+ **
c
;
10
return
*
b
;
11
}
12
if
(
a
)
13
return
g
(
a
);
14
return
1
;
15
}