about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-12-16 19:01:43 -0800
committerAlex Crichton <alex@alexcrichton.com>2018-12-17 08:47:03 -0800
commita0b766d584f2ddcc41022fef271b00ebdda0ba77 (patch)
tree9f2cc4f379d1b6e5eb16fa1eb9b4789e99bfc2f5 /src/libsyntax
parent54f3cd6873149a00ae0fb7723f200dccbb4baaa9 (diff)
downloadrust-a0b766d584f2ddcc41022fef271b00ebdda0ba77.tar.gz
rust-a0b766d584f2ddcc41022fef271b00ebdda0ba77.zip
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 1a4de59cce6..acf93712b5e 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -420,6 +420,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.