annotate test/tmp12.c @ 449:c55363eff5e5

parallel assignment (modify not completed)
author kono
date Thu, 25 Nov 2004 16:56:26 +0900
parents 0c256ea2a97e
children 32737bad7489
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
161
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
1
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
2
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
3 struct {
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
4 int a;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
5 char *b;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
6 } x1;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
7
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
8 // int b;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
9
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
10 main()
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
11 {
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
12 int a;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
13 x1.a = 1;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
14 a = 133;
427
0c256ea2a97e Bitfield left value for ia32
kono
parents: 172
diff changeset
15 printf("#0014:%d %d\n",x1.a,a);
172
096559f07a70 some check
kono
parents: 161
diff changeset
16 return 0;
161
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
17 }