Move IR modules under repr/.

Use the cretonne::repr module as a common namespace for sub-modules defining the
in-memory representation of Cretonn IL.
This commit is contained in:
Jakob Stoklund Olesen
2016-07-19 14:10:30 -07:00
parent 6e04ec5df9
commit 89ba9626c7
15 changed files with 46 additions and 45 deletions

View File

@@ -21,8 +21,8 @@
//! and (Ebb0, `jmp Ebb2`) respectively.
use repr::Function;
use entities::{Inst, Ebb};
use instructions::InstructionData;
use repr::entities::{Inst, Ebb};
use repr::instructions::InstructionData;
use std::collections::{BTreeSet, BTreeMap, btree_map};
/// A basic block denoted by its enclosing Ebb and last instruction.