Skip to content

Commit

Permalink
Reducer: Support --hybrid (WebAssembly#4726)
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken authored Jun 14, 2022
1 parent 4c810e4 commit 7049a85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools/wasm-reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1305,6 +1305,9 @@ int main(int argc, const char* argv[]) {
if (getTypeSystem() == TypeSystem::Nominal) {
extraFlags += " --nominal";
}
if (getTypeSystem() == TypeSystem::Isorecursive) {
extraFlags += " --hybrid";
}

if (test.size() == 0) {
Fatal() << "test file not provided\n";
Expand Down

0 comments on commit 7049a85

Please sign in to comment.