Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr17529.c
blob: 63a96a1c363565f4e13b01f0e32f75c4c792047f [
file
] [
log
] [
blame
]
static
inline
void
bar
(
const
int
*
const
x
)
{
__asm__ __volatile__
(
""
::
"m"
(*
x
));
}
static
const
int
y
[
1
];
void
foo
(
void
)
{
bar
(
y
);
}