rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr17529.c

15 lines
158 B
C

static inline void
bar (const int * const x)
{
__asm__ __volatile__ (""::"m" (*x));
}
static const int y[1];
void
foo (void)
{
bar (y);
}