vicis-core 0.2.1

Manipulate LLVM-IR in Pure Rust
Documentation
1
2
3
4
5
6
7
8
macro_rules! debug {
    ($($arg:tt)*) => {
        #[cfg(debug_assertions)]
        {
            dbg!($($arg)*);
        }
    };
}