Author: zoltan Date: 2007-06-14 15:17:51 -0400 (Thu, 14 Jun 2007) New Revision: 79611
Modified: trunk/mono/mono/mini/ChangeLog trunk/mono/mono/mini/mini-codegen.c Log: 2007-06-14 Zoltan Varga <[EMAIL PROTECTED]> * mini-codegen.c (mono_opcode_to_type): Fix ia64 build. Modified: trunk/mono/mono/mini/ChangeLog =================================================================== --- trunk/mono/mono/mini/ChangeLog 2007-06-14 19:14:53 UTC (rev 79610) +++ trunk/mono/mono/mini/ChangeLog 2007-06-14 19:17:51 UTC (rev 79611) @@ -1,3 +1,7 @@ +2007-06-14 Zoltan Varga <[EMAIL PROTECTED]> + + * mini-codegen.c (mono_opcode_to_type): Fix ia64 build. + 2007-06-14 Raja R Harinath <[EMAIL PROTECTED]> * jit-icalls.c (mono_helper_compile_generic_method): Update to Modified: trunk/mono/mono/mini/mini-codegen.c =================================================================== --- trunk/mono/mono/mini/mini-codegen.c 2007-06-14 19:14:53 UTC (rev 79610) +++ trunk/mono/mono/mini/mini-codegen.c 2007-06-14 19:17:51 UTC (rev 79611) @@ -1857,7 +1857,7 @@ return CMP_TYPE_L; else if ((opcode >= OP_CEQ) && (opcode <= OP_CLT_UN)) return CMP_TYPE_L; - else if ((opcode >= OP_IBEQ) && (opcode <= OP_IBLE_UN)) + else if ((opcode >= OP_IBEQ) && (opcode <= OP_IBLT_UN)) return CMP_TYPE_I; else if ((opcode >= OP_ICEQ) && (opcode <= OP_ICLT_UN)) return CMP_TYPE_I; @@ -1865,7 +1865,7 @@ return CMP_TYPE_L; else if ((opcode >= OP_LCEQ) && (opcode <= OP_LCLT_UN)) return CMP_TYPE_L; - else if ((opcode >= OP_FBEQ) && (opcode <= OP_FBLE_UN)) + else if ((opcode >= OP_FBEQ) && (opcode <= OP_FBLT_UN)) return CMP_TYPE_F; else if ((opcode >= OP_FCEQ) && (opcode <= OP_FCLT_UN)) return CMP_TYPE_F; _______________________________________________ Mono-patches maillist - Mono-patches@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-patches