Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / mini / llvm-runtime.cpp
1 #include <config.h>
2 #include "llvm-runtime.h"
3
4 #include <glib.h>
5
6 extern "C" {
7
8 void
9 mono_llvm_cpp_throw_exception (void)
10 {
11 #ifdef MONO_LLVM_LOADED
12         g_assert_not_reached ();
13 #else
14         gint32 *ex = NULL;
15
16         /* The generated code catches an int32* */
17         throw ex;
18 #endif
19 }
20
21 }