diff options
Diffstat (limited to 'src/tools/wasm-reduce.cpp')
-rw-r--r-- | src/tools/wasm-reduce.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp index f1f5a5b90..54c662211 100644 --- a/src/tools/wasm-reduce.cpp +++ b/src/tools/wasm-reduce.cpp @@ -592,6 +592,7 @@ struct Reducer fixed = builder->makeUnary(TruncSFloat64ToInt32, child); break; case v128: + case anyref: case exnref: continue; // not implemented yet case none: @@ -614,6 +615,7 @@ struct Reducer fixed = builder->makeUnary(TruncSFloat64ToInt64, child); break; case v128: + case anyref: case exnref: continue; // not implemented yet case none: @@ -636,6 +638,7 @@ struct Reducer fixed = builder->makeUnary(DemoteFloat64, child); break; case v128: + case anyref: case exnref: continue; // not implemented yet case none: @@ -658,6 +661,7 @@ struct Reducer case f64: WASM_UNREACHABLE(); case v128: + case anyref: case exnref: continue; // not implemented yet case none: @@ -667,6 +671,7 @@ struct Reducer break; } case v128: + case anyref: case exnref: continue; // not implemented yet case none: |