diff test/conv.c @ 427:0c256ea2a97e

Bitfield left value for ia32
author kono
date Sat, 30 Oct 2004 18:49:25 +0900 (2004-10-30)
parents 6e0f67b7d200
children 682c8ec38d45
line wrap: on
line diff
--- a/test/conv.c	Sat Oct 30 14:04:45 2004 +0900
+++ b/test/conv.c	Sat Oct 30 18:49:25 2004 +0900
@@ -59,7 +59,7 @@
 };
 
 code main_return(int i,stack sp) {
-    printf("%d\n",i);
+    printf("#0061:%d\n",i);
     goto (( (struct main_continuation *)sp)->main_ret)(0),
            ((struct main_continuation *)sp)->env;
 }
@@ -73,7 +73,7 @@
     struct main_continuation *cont;
     stack sp = stack_last;
 
-    printf("%d\n",f0(233));
+    printf("#0075:%d\n",f0(233));
 
     sp -= sizeof(*cont);
     cont = (struct main_continuation *)sp;