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
(module (func
br 0
block i32
br 1
end
i32.const 0
select
drop
))
But rejects the following:
(module (func
br 0
block f32
br 1
end
i32.const 0
select
drop
))
selecttest2.wast:7.2-7.8: invalid module: type mismatch: operator requires [i32 i32 i32] but stack has [_ f32 i32]
For the second example I believe the _ should match f32 and be valid, correct? (FWIW wabt's validator accepts that).
The text was updated successfully, but these errors were encountered:
The spec interpreter accepts the following
But rejects the following:
selecttest2.wast:7.2-7.8: invalid module: type mismatch: operator requires [i32 i32 i32] but stack has [_ f32 i32]
For the second example I believe the
_
should match f32 and be valid, correct? (FWIW wabt's validator accepts that).The text was updated successfully, but these errors were encountered: