Merge ends, store locals in registers where possible

This commit is contained in:
Jef
2019-01-17 11:07:51 +01:00
parent a7fa7da7d4
commit 74d168ec4b
6 changed files with 155 additions and 50 deletions

View File

@@ -9,7 +9,10 @@ extern crate failure;
extern crate wasmparser;
#[macro_use]
extern crate failure_derive;
#[macro_use]
extern crate memoffset;
extern crate dynasmrt;
extern crate itertools;
#[cfg(test)]
#[macro_use]
extern crate lazy_static;
@@ -28,4 +31,4 @@ mod translate_sections;
#[cfg(test)]
mod tests;
pub use module::{translate, TranslatedModule, ExecutableModule};
pub use module::{translate, ExecutableModule, TranslatedModule};