summaryrefslogtreecommitdiff
path: root/src/passes/FuncCastEmulation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/FuncCastEmulation.cpp')
-rw-r--r--src/passes/FuncCastEmulation.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/passes/FuncCastEmulation.cpp b/src/passes/FuncCastEmulation.cpp
index 30ae3e5e8..301a4b9fd 100644
--- a/src/passes/FuncCastEmulation.cpp
+++ b/src/passes/FuncCastEmulation.cpp
@@ -76,10 +76,6 @@ static Expression* toABI(Expression* value, Module* module) {
// can leave it, the call isn't taken anyhow
break;
}
- default: {
- // SIMD may be interesting some day
- WASM_UNREACHABLE();
- }
}
return value;
}
@@ -114,10 +110,6 @@ static Expression* fromABI(Expression* value, Type type, Module* module) {
// can leave it, the call isn't taken anyhow
break;
}
- default: {
- // SIMD may be interesting some day
- WASM_UNREACHABLE();
- }
}
return value;
}