cranelift_codegen/isa/
pulley64.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
pub use super::pulley_shared::isa_builder;

use super::pulley_shared::PulleyTargetKind;
use crate::isa::pulley_shared::PointerWidth;

#[derive(Debug, Default, Clone, Copy)]
pub(crate) struct Pulley64;

impl PulleyTargetKind for Pulley64 {
    fn pointer_width() -> PointerWidth {
        PointerWidth::PointerWidth64
    }
}