mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 22:28:26 +00:00
9 lines
289 B
Rust
9 lines
289 B
Rust
use super::BackendTypes;
|
|
use rustc_middle::ty::Ty;
|
|
use rustc_target::abi::call::FnAbi;
|
|
|
|
pub trait AbiBuilderMethods<'tcx>: BackendTypes {
|
|
fn apply_attrs_callsite(&mut self, fn_abi: &FnAbi<'tcx, Ty<'tcx>>, callsite: Self::Value);
|
|
fn get_param(&self, index: usize) -> Self::Value;
|
|
}
|