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
2013-10-21 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58539.c
blob
a016150f18ee7a55228660f4915fb945cfa08511
1
/* { dg-do compile } */
2
/* { dg-options "-g" } */
3
4
int
a
,
b
;
5
6
extern
void
baz
(
int
);
7
8
int
foo
(
int
p
)
9
{
10
return
p
?
p
:
1
;
11
}
12
13
void
bar
()
14
{
15
int
*
c
= &
a
, *
d
= &
a
;
16
for
(
b
=
0
;
b
<
12
;
b
++)
17
*
d
|=
1
;
18
foo
(*
c
);
19
baz
(*
c
&&
1
);
20
}