Merge remote-tracking branch 'origin/master' into feature/singlepass-cache

This commit is contained in:
losfair
2019-11-29 01:33:29 +08:00
12 changed files with 1562 additions and 639 deletions

View File

@ -254,11 +254,6 @@ pub fn compiler_for_backend(backend: Backend) -> Option<Box<dyn Compiler>> {
#[cfg(feature = "llvm")]
Backend::LLVM => Some(Box::new(wasmer_llvm_backend::LLVMCompiler::new())),
#[cfg(any(
not(feature = "llvm"),
not(feature = "singlepass"),
not(feature = "cranelift")
))]
_ => None,
}
}