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

foo(void)1 static void foo(void)
2 {
3 	asm("" :: "i" (42 & 3));
4 	asm("" :: "i" (__builtin_constant_p(0)));
5 }
6 
7 /*
8  * check-name: expand-asm0
9  * check-command: test-linearize $file
10  *
11  * check-output-start
12 foo:
13 .L0:
14 	<entry-point>
15 	asm         ""
16 		in: "i" ($2)
17 	asm         ""
18 		in: "i" ($1)
19 	ret
20 
21 
22  * check-output-end
23  */
24