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

asm_out0(void)1 static void asm_out0(void)
2 {
3 	int mem;
4 	asm volatile ("[%1] <= 0" : "=m" (mem));
5 }
6 
7 /*
8  * check-name: asm-out0
9  * check-command: test-linearize -m64 -fdump-ir $file
10  *
11  * check-output-start
12 asm_out0:
13 .L0:
14 	<entry-point>
15 	symaddr.64  %r1 <- mem
16 	asm         "[%1] <= 0"
17 		out: "=m" (%r1)
18 	br          .L1
19 
20 .L1:
21 	ret
22 
23 
24  * check-output-end
25  */
26