Merge branch 'master' into fix/emscripten-translate

This commit is contained in:
Brandon Fish
2019-01-29 23:07:32 -06:00
46 changed files with 2510 additions and 1514 deletions

View File

@ -1,7 +1,3 @@
macro_rules! debug {
($fmt:expr) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt), line!()) });
($fmt:expr, $($arg:tt)*) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt, "\n"), line!(), $($arg)*) });
}
macro_rules! emscripten_memory_pointer {
($memory:expr, $pointer:expr) => {