From 27a2f0ebeaf86877bc53ada3469a8901669582a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joa=CC=83o=20Matos?= Date: Mon, 30 Mar 2015 17:20:57 +0100 Subject: [PATCH] [mini] Fixed the build. LLVM_FAILURE will try to `goto FAILURE` so we need to add a label to the function to make the compiler happy. --- mono/mini/mini-llvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mono/mini/mini-llvm.c b/mono/mini/mini-llvm.c index fea1e3bef9c..17dd6ef0b23 100644 --- a/mono/mini/mini-llvm.c +++ b/mono/mini/mini-llvm.c @@ -2617,6 +2617,10 @@ emit_handler_start (EmitContext *ctx, MonoBasicBlock *bb, LLVMBuilderRef builder ctx->bblocks [bb->block_num].end_bblock = target_bb; } + return; + + FAILURE: + return; } static void -- 2.25.1