rllvm 0.1.5

A tool to build whole-program LLVM bitcode files
Documentation
//! Whole Program LLVM in Rust

/// Command-line argument parser for compilers
pub mod arg_parser;

/// Configurations of RLLVM
pub mod config;

/// Compiler wrapper
pub mod compiler_wrapper;

/// Error Type
pub mod error;

/// Utility functions
pub mod utils;

/// Internal constants
pub(self) mod constants;