1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Output of the LLVM bitcode format.

use super::prelude::*;

extern "C" {
    /// Write a module to the specified path.
    ///
    /// Returns 0 on success.
    pub fn LLVMWriteBitcodeToFile(M: LLVMModuleRef, Path: *const ::libc::c_char) -> ::libc::c_int;
    /// Write a module to an open file descriptor.
    ///
    /// Returns 0 on success.
    pub fn LLVMWriteBitcodeToFD(
        M: LLVMModuleRef,
        FD: ::libc::c_int,
        ShouldClose: ::libc::c_int,
        Unbuffered: ::libc::c_int,
    ) -> ::libc::c_int;
    /// Deprecated: use LLVMWriteBitcodeToFD
    pub fn LLVMWriteBitcodeToFileHandle(M: LLVMModuleRef, Handle: ::libc::c_int) -> ::libc::c_int;
    /// Writes a module to a new memory buffer.
    pub fn LLVMWriteBitcodeToMemoryBuffer(M: LLVMModuleRef) -> LLVMMemoryBufferRef;
}