llvm-assembler 0.1.1

LLVM IR assembler for Gaia project
Documentation
1
2
3
4
5
6
7
8
9
10
#![warn(missing_docs)]

pub mod builder;
pub mod formats;
pub mod helpers;
pub mod program;

pub use builder::LLvmProgramBuilder;
pub use formats::llvm::{reader::LLvmReader, writer::LLvmWriter};
pub use program::LLvmProgram;