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
2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr43379.c
blob
da4e6ba67adf2c5abe9cb09d42478fa9e3d33b64
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftracer -w" } */
3
4
void
*
foo
(
int
i
,
int
*
p
)
5
{
6
lab
:
7
if
(
p
) *
p
=
i
;
8
goto
*
p
;
9
return
&&
lab
;
10
}
11