about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-08-09 16:58:48 +0800
committerkennytm <kennytm@gmail.com>2018-08-10 01:01:20 +0800
commit7f886cf12b39e4079a9db1f3c5075b40de574a67 (patch)
tree4c459bf147b429448d508efc8abd5c5372e9bb25 /src/libsyntax
parent23601d08e6e3f52fec722e42362f727971475ced (diff)
parentc92db3665622f1775358efe7eeb57d0db31cf6db (diff)
downloadrust-7f886cf12b39e4079a9db1f3c5075b40de574a67.tar.gz
rust-7f886cf12b39e4079a9db1f3c5075b40de574a67.zip
Rollup merge of #53179 - gnzlbg:patch-3, r=alexcrichton
Whitelist wasm32 simd128 target feature

r? @alexcrichton
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 65eeaff3f10..976708ae788 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -452,6 +452,7 @@ declare_features! (
     (active, mmx_target_feature, "1.27.0", Some(44839), None),
     (active, sse4a_target_feature, "1.27.0", Some(44839), None),
     (active, tbm_target_feature, "1.27.0", Some(44839), None),
+    (active, wasm_target_feature, "1.30.0", Some(44839), None),
 
     // Allows macro invocations of the form `#[foo::bar]`
     (active, proc_macro_path_invoc, "1.27.0", Some(38356), None),