annotate test/regargs.c @ 427:0c256ea2a97e

Bitfield left value for ia32
author kono
date Sat, 30 Oct 2004 18:49:25 +0900
parents 096559f07a70
children 32737bad7489
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
170
6e0f67b7d200 test files
kono
parents:
diff changeset
1
6e0f67b7d200 test files
kono
parents:
diff changeset
2 int
6e0f67b7d200 test files
kono
parents:
diff changeset
3 arg1(int a1,int a2,int a3,int a4)
6e0f67b7d200 test files
kono
parents:
diff changeset
4 {
427
0c256ea2a97e Bitfield left value for ia32
kono
parents: 172
diff changeset
5 printf("#0004:%d %d %d %d\n",a1,a2,a3,a4);
170
6e0f67b7d200 test files
kono
parents:
diff changeset
6 }
6e0f67b7d200 test files
kono
parents:
diff changeset
7
6e0f67b7d200 test files
kono
parents:
diff changeset
8 int
6e0f67b7d200 test files
kono
parents:
diff changeset
9 arg0(int a1,int a2,int a3,int a4)
6e0f67b7d200 test files
kono
parents:
diff changeset
10 {
6e0f67b7d200 test files
kono
parents:
diff changeset
11 arg1(0,1,2,3);
427
0c256ea2a97e Bitfield left value for ia32
kono
parents: 172
diff changeset
12 printf("#0011:%d %d %d %d\n",a1,a2,a3,a4);
170
6e0f67b7d200 test files
kono
parents:
diff changeset
13 }
6e0f67b7d200 test files
kono
parents:
diff changeset
14
6e0f67b7d200 test files
kono
parents:
diff changeset
15 main()
6e0f67b7d200 test files
kono
parents:
diff changeset
16 {
6e0f67b7d200 test files
kono
parents:
diff changeset
17 arg0(0,1,2,3);
172
096559f07a70 some check
kono
parents: 170
diff changeset
18 return 0;
170
6e0f67b7d200 test files
kono
parents:
diff changeset
19 }