diff options
Diffstat (limited to 'src/tools/wasm-reduce.cpp')
-rw-r--r-- | src/tools/wasm-reduce.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp index 54a915ec0..cea415a47 100644 --- a/src/tools/wasm-reduce.cpp +++ b/src/tools/wasm-reduce.cpp @@ -592,7 +592,8 @@ struct Reducer fixed = builder->makeUnary(TruncSFloat64ToInt32, child); break; case v128: - continue; // v128 not implemented yet + case except_ref: + continue; // not implemented yet case none: case unreachable: WASM_UNREACHABLE(); @@ -613,7 +614,8 @@ struct Reducer fixed = builder->makeUnary(TruncSFloat64ToInt64, child); break; case v128: - continue; // v128 not implemented yet + case except_ref: + continue; // not implemented yet case none: case unreachable: WASM_UNREACHABLE(); @@ -634,7 +636,8 @@ struct Reducer fixed = builder->makeUnary(DemoteFloat64, child); break; case v128: - continue; // v128 not implemented yet + case except_ref: + continue; // not implemented yet case none: case unreachable: WASM_UNREACHABLE(); @@ -655,7 +658,8 @@ struct Reducer case f64: WASM_UNREACHABLE(); case v128: - continue; // v128 not implemented yet + case except_ref: + continue; // not implemented yet case none: case unreachable: WASM_UNREACHABLE(); @@ -663,7 +667,8 @@ struct Reducer break; } case v128: - continue; // v128 not implemented yet + case except_ref: + continue; // not implemented yet case none: case unreachable: WASM_UNREACHABLE(); |