diff options
author | Alon Zakai <azakai@google.com> | 2022-09-30 09:23:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 16:23:06 +0000 |
commit | fa3ff32e845ca59113fbdc2044a7dece3da6c2c8 (patch) | |
tree | 776c8e0682b76c4004cf3e4f6de4a5c910b86205 /src/passes/call-utils.h | |
parent | adedcd2dac789bf5165621c0fd4279ae7327bd3b (diff) | |
download | binaryen-fa3ff32e845ca59113fbdc2044a7dece3da6c2c8.tar.gz binaryen-fa3ff32e845ca59113fbdc2044a7dece3da6c2c8.tar.bz2 binaryen-fa3ff32e845ca59113fbdc2044a7dece3da6c2c8.zip |
Fix handling of unreachable selects in Directize (#5098)
We ignored only unreachable conditions, but we must ignore the arms as well,
or else we could error.
Diffstat (limited to 'src/passes/call-utils.h')
-rw-r--r-- | src/passes/call-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/call-utils.h b/src/passes/call-utils.h index 175946c0e..7f2ebfda3 100644 --- a/src/passes/call-utils.h +++ b/src/passes/call-utils.h @@ -76,7 +76,7 @@ convertToDirectCalls(T* curr, return nullptr; } - if (select->condition->type == Type::unreachable) { + if (select->type == Type::unreachable) { // Leave this for DCE. return nullptr; } |