• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define barrier() __asm__ __volatile__("": : :"memory")
2 
f(void)3 static void f(void)
4 {
5 	barrier();
6 	goto l;
7 l:
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