diff options
Diffstat (limited to 'llvm/bindings/ocaml/target/target_ocaml.c')
-rw-r--r-- | llvm/bindings/ocaml/target/target_ocaml.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/llvm/bindings/ocaml/target/target_ocaml.c b/llvm/bindings/ocaml/target/target_ocaml.c index efb5d9bd51e..8f77cb46f13 100644 --- a/llvm/bindings/ocaml/target/target_ocaml.c +++ b/llvm/bindings/ocaml/target/target_ocaml.c @@ -23,25 +23,8 @@ #include "caml/custom.h" #include "caml/callback.h" -/*===---- Exceptions ------------------------------------------------------===*/ - -static void llvm_raise(value Prototype, char *Message) { - CAMLparam1(Prototype); - CAMLlocal1(CamlMessage); - - CamlMessage = copy_string(Message); - LLVMDisposeMessage(Message); - - raise_with_arg(Prototype, CamlMessage); - CAMLnoreturn; -} - -static value llvm_string_of_message(char* Message) { - value String = caml_copy_string(Message); - LLVMDisposeMessage(Message); - - return String; -} +void llvm_raise(value Prototype, char *Message); +value llvm_string_of_message(char* Message); /*===---- Data Layout -----------------------------------------------------===*/ |