Files
wasmtime/lib/cretonne/src/isa/arm32/binemit.rs
Jakob Stoklund Olesen 4158c4e09c Implement reloc_names() for all targets.
This gets rid of the last TargetIsa method with a default
implementation.
2017-05-11 17:58:11 -07:00

9 lines
219 B
Rust

//! Emitting binary ARM32 machine code.
use binemit::{CodeSink, bad_encoding};
use ir::{Function, Inst};
include!(concat!(env!("OUT_DIR"), "/binemit-arm32.rs"));
pub static RELOC_NAMES: [&'static str; 1] = ["Call"];