about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-12-19 11:47:13 +0100
committerGitHub <noreply@github.com>2018-12-19 11:47:13 +0100
commit2e5a025d443dbefbdb82053112b447ce998d2ab0 (patch)
tree821b28c0624566abd1cd140239ce43857aba1213 /src/libsyntax
parent39dc2c4e34f16fdd9d15a89cfc9d82ed60c67b17 (diff)
parenta0b766d584f2ddcc41022fef271b00ebdda0ba77 (diff)
downloadrust-2e5a025d443dbefbdb82053112b447ce998d2ab0.tar.gz
rust-2e5a025d443dbefbdb82053112b447ce998d2ab0.zip
Rollup merge of #56908 - alexcrichton:new-features, r=oli-obk
rustc: Don't ICE on usage of two new target features

I seem to always forget to update this portion of the compiler...
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 4eca0c942f3..844f49fe842 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -417,6 +417,8 @@ declare_features! (
     (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),
+    (active, adx_target_feature, "1.32.0", Some(44839), None),
+    (active, cmpxchg16b_target_feature, "1.32.0", Some(44839), None),
 
     // Allows macro invocations on modules expressions and statements and
     // procedural macros to expand to non-items.