Sha256: a8460cb4345b6cbe5089f014510e34338f9a9613e62a97dd2d293a3ed0893210
Contents?: true
Size: 608 Bytes
Versions: 1
Compression:
Stored size: 608 Bytes
Contents
use crate::cdsl::{isa::TargetIsa, settings::SettingGroupBuilder}; pub(crate) fn define() -> TargetIsa { let mut settings = SettingGroupBuilder::new("pulley"); settings.add_enum( "pointer_width", "The width of pointers for this Pulley target", "Supported values:\n\ * 'pointer32'\n\ * 'pointer64'\n", vec!["pointer32", "pointer64"], ); settings.add_bool( "big_endian", "Whether this is a big-endian target", "Whether this is a big-endian target", false, ); TargetIsa::new("pulley", settings.build()) }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wasmtime-29.0.0 | ./ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs |