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

@@ -8,7 +8,7 @@ use std::io::{Read, Write, stdout};
use CommandResult;
use cretonne::repr::Function;
use cretonne::cfg::ControlFlowGraph;
use cretonne::instructions::InstructionData;
use cretonne::repr::instructions::InstructionData;
use cton_reader::parser::Parser;
pub fn run(files: Vec<String>) -> CommandResult {