Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/codegen/meta/src/cdsl/isa.rs
1693 views
1
use crate::cdsl::settings::SettingGroup;
2
3
pub(crate) struct TargetIsa {
4
pub name: &'static str,
5
pub settings: SettingGroup,
6
}
7
8
impl TargetIsa {
9
pub fn new(name: &'static str, settings: SettingGroup) -> Self {
10
Self { name, settings }
11
}
12
}
13
14