rust/compiler/rustc_codegen_ssa/src/traits/abi.rs
bjorn3 62cf644c64 Merge apply_attrs_callsite into call and invoke
Some codegen backends are not able to apply callsite attrs after the fact.
2022-10-01 17:01:31 +00:00

5 lines
136 B
Rust

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