• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

asm_reload(void)1 static int asm_reload(void)
2 {
3 	int mem = 0;
4 	asm volatile ("[%1] <= 1" : "=m" (mem));
5 	return mem;
6 }
7 
8 /*
9  * check-name: asm-reload0
10  * check-command: test-linearize $file
11  *
12  * check-output-ignore
13  * check-output-contains: load\\.
14  */
15