[mini] set MONO_ARCH_HAVE_INIT_LMF_EXT on architectures that implement mono_arch_init...
[mono-project.git] / mono / mini / llvm-runtime.cpp
blobc747e022b38f585e3da61438ad41f954061e5722
1 #include <config.h>
2 #include "llvm-runtime.h"
4 #include <glib.h>
6 extern "C" {
8 void
9 mono_llvm_cpp_throw_exception (void)
11 #ifdef MONO_LLVM_LOADED
12 g_assert_not_reached ();
13 #else
14 gint32 *ex = NULL;
16 /* The generated code catches an int32* */
17 throw ex;
18 #endif