Remove the old x86 backend

This commit is contained in:
bjorn3
2021-06-18 17:28:55 +02:00
parent e989caf337
commit 9e34df33b9
246 changed files with 76 additions and 28804 deletions

View File

@@ -9,7 +9,6 @@
use anyhow::Result;
#[cfg(not(feature = "old-x86-backend"))]
fn main() -> Result<()> {
use wasmtime::*;
@@ -63,11 +62,3 @@ fn main() -> Result<()> {
Ok(())
}
// Note that this example is not supported in the off-by-default feature of the
// old x86 compiler backend for Cranelift. Wasmtime's default configuration
// supports this example, however.
#[cfg(feature = "old-x86-backend")]
fn main() -> Result<()> {
Ok(())
}