Add ISA-dependent settings for RISC-V.

This commit is contained in:
Jakob Stoklund Olesen
2016-08-05 16:19:46 -07:00
parent cfeefde3fc
commit 36ad7da3ec
8 changed files with 38 additions and 2 deletions

View File

@@ -1 +1,3 @@
//! RISC-V Instruction Set Architecture.
pub mod settings;

View File

@@ -0,0 +1,5 @@
//! RISC-V Settings.
// Include code generated by `meta/gen_settings.py`. This file contains a public `Settings` struct
// with an impl for all of the settings defined in `meta/cretonne/settings.py`.
include!(concat!(env!("OUT_DIR"), "/settings-riscv.rs"));