Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.dg
/
asan
/
pr63845.c
blob: a3fbe064dc22940f272795d73858179a55f2901a [
file
] [
log
] [
blame
]
/* PR sanitizer/63845 */
/* { dg-do compile } */
/* { dg-options "-fPIC" { target fpic } } */
int
__attribute__
((
noinline
,
noclone
))
foo
(
void
*
p
)
{
return
*(
int
*)
p
;
}
int
main
()
{
char
a
=
0
;
foo
(&
a
);
return
0
;
}