Mercurial > hg > CbC > old > device
diff test/macro.c @ 427:0c256ea2a97e
Bitfield left value for ia32
author | kono |
---|---|
date | Sat, 30 Oct 2004 18:49:25 +0900 |
parents | a93e619cf772 |
children | 32737bad7489 |
line wrap: on
line diff
--- a/test/macro.c Sat Oct 30 14:04:45 2004 +0900 +++ b/test/macro.c Sat Oct 30 18:49:25 2004 +0900 @@ -14,7 +14,7 @@ #define TEST111 TEST0 #define c(a,b) g(a+1,b+1) -#define g(a,b) printf("%d %d\n",a+1,b+1); +#define g(a,b) printf("#0016:%d %d\n",a+1,b+1); #define d(a,b) cadr(b)+3 /* @@ -48,24 +48,24 @@ g(car(cadr(e)),cadr(e)); #endif #if 0 - printf("1\n"); + printf("#0050:1\n"); #elif (1) - printf("2\n"); + printf("#0052:2\n"); #elif (2) - printf("3\n"); + printf("#0054:3\n"); #else - printf("4\n"); + printf("#0056:4\n"); #endif #if 0 - printf("1\n"); + printf("#0059:1\n"); #elif (0) - printf("2\n"); + printf("#0061:2\n"); #elif (0) - printf("3\n"); + printf("#0063:3\n"); #else - printf("4\n"); + printf("#0065:4\n"); #endif - printf("%d\n",name(3,hoge)); + printf("#0067:%d\n",name(3,hoge)); return 0; }