Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr60072.c
blob: 566874d635e660f6ef0b0a541c4a9bdd880e324c [
file
] [
log
] [
blame
]
/* PR target/60072 */
int
c
=
1
;
__attribute__
((
optimize
(
1
)))
static
int
*
foo
(
int
*
p
)
{
return
p
;
}
int
main
()
{
*
foo
(&
c
)
=
2
;
return
c
-
2
;
}