[meta] Introduce the fmtln! macro to ease writing formatted strings;

This commit is contained in:
Benjamin Bouvier
2019-02-13 17:27:33 +01:00
parent c8e09cb37f
commit 603d80615f
5 changed files with 211 additions and 173 deletions

View File

@@ -1,5 +1,6 @@
#[macro_use]
mod cdsl;
mod srcgen;
pub mod error;
pub mod isa;
@@ -10,7 +11,6 @@ mod gen_types;
mod constant_hash;
mod shared;
mod srcgen;
mod unique_table;
pub fn isa_from_arch(arch: &str) -> Result<isa::Isa, String> {