Files
wasmtime/cranelift/codegen/meta/src/cdsl/isa.rs
2021-09-29 16:27:47 +02:00

13 lines
261 B
Rust

use crate::cdsl::settings::SettingGroup;
pub(crate) struct TargetIsa {
pub name: &'static str,
pub settings: SettingGroup,
}
impl TargetIsa {
pub fn new(name: &'static str, settings: SettingGroup) -> Self {
Self { name, settings }
}
}