Add an ArgumentLoc data type.

This will be used to amend function signatures with ABI lowering
information.
This commit is contained in:
Jakob Stoklund Olesen
2017-02-24 12:04:46 -08:00
parent aa7e349134
commit cf7a729dc1
2 changed files with 35 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ pub use ir::entities::{Ebb, Inst, Value, StackSlot, JumpTable, FuncRef, SigRef};
pub use ir::instructions::{Opcode, InstructionData, VariableArgs};
pub use ir::stackslot::StackSlotData;
pub use ir::jumptable::JumpTableData;
pub use ir::valueloc::ValueLoc;
pub use ir::valueloc::{ValueLoc, ArgumentLoc};
pub use ir::dfg::{DataFlowGraph, ValueDef};
pub use ir::layout::{Layout, Cursor};
pub use ir::function::Function;