Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/codegen/src/isa/pulley32.rs
1693 views
1
pub use super::pulley_shared::isa_builder;
2
3
use super::pulley_shared::PulleyTargetKind;
4
use crate::isa::pulley_shared::PointerWidth;
5
6
#[derive(Debug, Default, Clone, Copy)]
7
pub(crate) struct Pulley32;
8
9
impl PulleyTargetKind for Pulley32 {
10
fn pointer_width() -> PointerWidth {
11
PointerWidth::PointerWidth32
12
}
13
}
14
15