summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_ssa/src/traits/abi.rs
blob: 60d8f2a9ece4867900c4301ff5f895f8b7ad0c2a (plain)
1
2
3
4
5
use super::BackendTypes;

pub trait AbiBuilderMethods<'tcx>: BackendTypes {
    fn get_param(&mut self, index: usize) -> Self::Value;
}