2013-11-06 09:21:25 +00:00
|
|
|
(*===-- llvm_irreader.ml - LLVM OCaml Interface ---------------*- OCaml -*-===*
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
|
|
|
* This file is distributed under the University of Illinois Open Source
|
|
|
|
* License. See LICENSE.TXT for details.
|
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===*)
|
|
|
|
|
|
|
|
|
|
|
|
exception Error of string
|
|
|
|
|
2014-10-29 08:15:54 +00:00
|
|
|
let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
|
2013-11-06 09:21:25 +00:00
|
|
|
|
|
|
|
external parse_ir : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule
|
|
|
|
= "llvm_parse_ir"
|