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
v.gen.wasm: make wasm_relaxed_simd imply wasm_simd
Address the review on #27526: relaxed SIMD extends the SIMD/v128 feature, but
passing only -d wasm_relaxed_simd enabled .relaxed_simd without .simd. That made
wabt_validate_args() emit '--disable-simd --enable-relaxed-simd' and wasm-opt run
from -mvp without --enable-simd, so the advertised opt-in still failed under
-wasm-validate/-prod unless the user also guessed -d wasm_simd.
Add apply_feature_implications() so .relaxed_simd pulls in .simd, and cover it
with features_test.v (feature set + rendered wasm-opt/wasm-validate flags).
0 commit comments