From: Zoltan Varga Date: Tue, 15 Jun 2010 20:09:51 +0000 (-0000) Subject: 2010-06-15 Zoltan Varga X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=e4d6c14d9eacc70ce09bac849631530eab84194b;p=mono.git 2010-06-15 Zoltan Varga * mini-llvm.c (process_bb): Add a missing CHECK_FAILURE. svn path=/trunk/mono/; revision=158971 --- diff --git a/mono/mini/ChangeLog b/mono/mini/ChangeLog index a079cb68eee..46a2c2bf04c 100755 --- a/mono/mini/ChangeLog +++ b/mono/mini/ChangeLog @@ -1,5 +1,7 @@ 2010-06-15 Zoltan Varga + * mini-llvm.c (process_bb): Add a missing CHECK_FAILURE. + * mini.c (mini_init): Remove some of the llvm restrictions, they are no longer needed. * method-to-ir.c (mono_method_to_ir): Enable fast virtual calls when using llvm. diff --git a/mono/mini/mini-llvm.c b/mono/mini/mini-llvm.c index dd9d8de680a..f34ea5bf882 100644 --- a/mono/mini/mini-llvm.c +++ b/mono/mini/mini-llvm.c @@ -2823,6 +2823,7 @@ process_bb (EmitContext *ctx, MonoBasicBlock *bb) case OP_FCALL_REG: case OP_VCALL_REG: { process_call (ctx, bb, &builder, ins); + CHECK_FAILURE (ctx); break; } case OP_AOTCONST: {