You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running wasm-opt -all -tnh --gufa-cast-all test.wast -S -o - optimizes the function body to just (ref.null (shared none)), which is not correct. I tried debugging this and I figured out that there is an intermediate state where the ref.cast type has been changed to (ref null (shared none)), but I haven't been able to figure out why it's doing that.
The text was updated successfully, but these errors were encountered:
As a quick guess, perhaps one of the first four methods here (combine, intersect, haveIntersection, isSubContents) need updating for shared types? Might be easiest to verify if that is the case by adding some cases to the existing test.
Running
wasm-opt -all -tnh --gufa-cast-all test.wast -S -o -
optimizes the function body to just(ref.null (shared none))
, which is not correct. I tried debugging this and I figured out that there is an intermediate state where theref.cast
type has been changed to(ref null (shared none))
, but I haven't been able to figure out why it's doing that.The text was updated successfully, but these errors were encountered: