The intel, arm32, and arm32 targets were only defined in the meta language previously. Add Rust implementations too. This is mostly boilerplate, except for the unit tests in the registers.rs files.
10 lines
338 B
Rust
10 lines
338 B
Rust
//! ARM64 Settings.
|
|
|
|
use settings::{self, detail, Builder};
|
|
use std::fmt;
|
|
|
|
// Include code generated by `lib/cretonne/meta/gen_settings.py`. This file contains a public
|
|
// `Flags` struct with an impl for all of the settings defined in
|
|
// `lib/cretonne/meta/cretonne/settings.py`.
|
|
include!(concat!(env!("OUT_DIR"), "/settings-arm64.rs"));
|