* Cranelift: Remove the `ABICaller` trait It has only one implementation: the `ABICallerImpl` struct. We can just use that directly rather than having extra, unnecessary layers of generics and abstractions. * Cranelift: Rename `ABICallerImpl` to `Caller`
8 lines
227 B
Rust
8 lines
227 B
Rust
//! ABI definitions.
|
|
|
|
use smallvec::SmallVec;
|
|
|
|
/// A small vector of instructions (with some reasonable size); appropriate for
|
|
/// a small fixed sequence implementing one operation.
|
|
pub type SmallInstVec<I> = SmallVec<[I; 4]>;
|