Wed Dec 18 11:42:58 CET 2002 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Wed, 18 Dec 2002 10:45:15 +0000 (10:45 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Wed, 18 Dec 2002 10:45:15 +0000 (10:45 -0000)
* jit.c: handle CEE_CONV_OVF_U8_UN like CEE_CONV_OVF_I8_UN.

svn path=/trunk/mono/; revision=9746

mono/jit/ChangeLog
mono/jit/jit.c

index 54762fcc627ad540836ac77c9e56fa4ad932575f..99482036febd93de569d6a4d2819124029715545 100644 (file)
@@ -1,7 +1,11 @@
 
+Wed Dec 18 11:42:58 CET 2002 Paolo Molaro <lupus@ximian.com>
+
+       * jit.c: handle CEE_CONV_OVF_U8_UN like CEE_CONV_OVF_I8_UN.
+
 Wed Dec 18 11:36:04 CET 2002 Paolo Molaro <lupus@ximian.com>
 
-       jit.c: query the thread abort signal from the runtime.
+       jit.c: query the thread abort signal from the runtime.
 
 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
 
index 034524dc8806183e280602f8879a587551a9af27..1a98daaa3b8849ef34af568b3e21afff2e03b851 100644 (file)
@@ -3126,6 +3126,7 @@ mono_analyze_stack (MonoFlowGraph *cfg)
                        PUSH_TREE (t1, VAL_I32);                
                        break;
                case CEE_CONV_OVF_I8_UN:
+               case CEE_CONV_OVF_U8_UN: /* FIXME: slightly incorrect, but non worth fixing the corner cases in the old jit */
                        ++ip;
                        sp--;
                        t1 = mono_ctree_new (mp, MB_TERM_CONV_OVF_I8_UN, *sp, NULL);