1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! `stir` (or Small Threaded Intermediate Representation) is an intermediate
//! representation providing JIT Compilation and an interface to LLVM IR.
//! It aims to improve code speed by analyzing and multithreading code units.
//!
//! `stir` is organized in blocks. The smaller the block, the easier to
//! multithread !

#[allow(dead_code)]
pub mod blocks;
pub mod label;
pub mod recipe;