Rename the 'repr' module to 'ir'.

This module and its submodules define the Intermidiate Representation of the
Cretonne IL.
This commit is contained in:
Jakob Stoklund Olesen
2016-07-22 09:34:28 -07:00
parent 367752be1d
commit 38815dcca3
15 changed files with 45 additions and 45 deletions

View File

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