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
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr24626-3.c
blob
41decabfacfae7c5713a725d633548055da50133
1
/* { dg-do compile } */
2
3
long
fff
(
int
*);
4
void
T
(
int
*);
5
6
long
F2
(
int
*
node
)
7
{
8
long
call_result
=
0
;
9
10
if
(
call_result
=
fff
(
node
))
11
goto
error_free_node
;
12
13
T
(
node
);
14
return
0
;
15
16
error_free_node
:
17
T
(
node
);
18
return
call_result
;
19
}