Files
wasmtime/lib/cretonne/src/isa/arm32/enc_tables.rs
Jakob Stoklund Olesen 4293bed745 Fix a dead code warning from the new Rust compiler.
On ISAs with no instruction predicates, just emit an unimplemented!()
stub for the check_instp() function. It is unlikely that a finished ISA
will not have any instruction predicates.
2017-02-03 11:28:59 -08:00

9 lines
209 B
Rust

//! Encoding tables for ARM32 ISA.
use ir::InstructionData;
use ir::types;
use isa::enc_tables::{Level1Entry, Level2Entry};
use isa::constraints::*;
include!(concat!(env!("OUT_DIR"), "/encoding-arm32.rs"));