mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
773ba13395
ocamldoc. It does not yet hook into the build system, though. Patch by Erick Tryzelaar! llvm-svn: 48095
19 lines
741 B
OCaml
19 lines
741 B
OCaml
(*===-- llvm_bitwriter.mli - LLVM Ocaml Interface ---------------*- C++ -*-===*
|
|
*
|
|
* The LLVM Compiler Infrastructure
|
|
*
|
|
* This file is distributed under the University of Illinois Open Source
|
|
* License. See LICENSE.TXT for details.
|
|
*
|
|
*===----------------------------------------------------------------------===*)
|
|
|
|
(** Bitcode writer.
|
|
|
|
This interface provides an ocaml API for the LLVM bitcode writer, the
|
|
classes in the Bitwriter library. *)
|
|
|
|
(** [write_bitcode_file m path] writes the bitcode for module [m] to the file at
|
|
[path]. Returns [true] if successful, [false] otherwise. *)
|
|
external write_bitcode_file : Llvm.llmodule -> string -> bool
|
|
= "llvm_write_bitcode_file"
|