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

@@ -525,7 +525,6 @@ fn pass_cross_store_arg() -> anyhow::Result<()> {
}
#[test]
#[cfg_attr(feature = "old-x86-backend", ignore)]
fn externref_signature_no_reference_types() -> anyhow::Result<()> {
let mut config = Config::new();
config.wasm_reference_types(false);
@@ -569,7 +568,6 @@ fn trampolines_always_valid() -> anyhow::Result<()> {
}
#[test]
#[cfg(not(feature = "old-x86-backend"))]
fn typed_multiple_results() -> anyhow::Result<()> {
let mut store = Store::<()>::default();
let module = Module::new(
@@ -647,7 +645,6 @@ fn trap_doesnt_leak() -> anyhow::Result<()> {
}
#[test]
#[cfg(not(feature = "old-x86-backend"))]
fn wrap_multiple_results() -> anyhow::Result<()> {
fn test<T>(store: &mut Store<()>, t: T) -> anyhow::Result<()>
where