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);
}