cranelift_codegen/isa/pulley32.rs
1pub use super::pulley_shared::isa_builder;
2
3use super::pulley_shared::PulleyTargetKind;
4use crate::isa::pulley_shared::PointerWidth;
5
6#[derive(Debug, Default, Clone, Copy)]
7pub(crate) struct Pulley32;
8
9impl PulleyTargetKind for Pulley32 {
10 fn pointer_width() -> PointerWidth {
11 PointerWidth::PointerWidth32
12 }
13}