diff options
| -rw-r--r-- | tests/ui/sse2.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/sse2.rs b/tests/ui/sse2.rs index c203ca2716f..60570c566de 100644 --- a/tests/ui/sse2.rs +++ b/tests/ui/sse2.rs @@ -19,7 +19,7 @@ fn main() { assert!(cfg!(target_feature = "sse2"), "SSE2 was not detected as available on an x86 platform"); } - // check a negative case too -- allowed on x86, but not enabled by default - assert!(cfg!(not(target_feature = "avx512f")), - "AVX512 shouldn't be detected as available by default on any platform"); + // check a negative case too -- certainly not enabled by default + assert!(cfg!(not(target_feature = "ferris_wheel")), + "🎡 shouldn't be detected as available by default on any platform"); } |
