Fix offsets_static_dynamic_oh_my failure on s390x (#3015)

The test unconditionally emits a SIMD load, which fails on s390x
as we do not yet support SIMD.  Disable this particular part of
the test on s390x.
This commit is contained in:
Ulrich Weigand
2021-06-22 16:14:07 +02:00
committed by GitHub
parent 8760bccc8e
commit acdb388580

View File

@@ -19,6 +19,7 @@ fn module(engine: &Engine) -> Result<Module> {
(2, &["i32.load16_s"]), (2, &["i32.load16_s"]),
(4, &["i32.load" /*, "f32.load"*/]), (4, &["i32.load" /*, "f32.load"*/]),
(8, &["i64.load" /*, "f64.load"*/]), (8, &["i64.load" /*, "f64.load"*/]),
#[cfg(not(target_arch = "s390x"))]
(16, &["v128.load"]), (16, &["v128.load"]),
] ]
.iter() .iter()