1#define barrier() __asm__ __volatile__("": : :"memory") 2 3static void f(void) 4{ 5 barrier(); 6 goto l; 7l: 8 barrier(); 9} 10/* 11 * check-name: Label followed by __asm__ 12 * check-description: Sparse used to parse the __asm__ as modifying the label. 13 */ 14