Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd828cf

Browse files
committedMay 24, 2024
Stop using the avx512er and avx512pf x86 target features
They are no longer supported by LLVM 19. Fixes rust-lang#125492
1 parent a365890 commit dd828cf

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎std/tests/run-time-detect.rs

-2
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,8 @@ fn x86_all() {
121121
println!("avx512bw: {:?}", is_x86_feature_detected!("avx512bw"));
122122
println!("avx512cd: {:?}", is_x86_feature_detected!("avx512cd"));
123123
println!("avx512dq: {:?}", is_x86_feature_detected!("avx512dq"));
124-
println!("avx512er: {:?}", is_x86_feature_detected!("avx512er"));
125124
println!("avx512f: {:?}", is_x86_feature_detected!("avx512f"));
126125
println!("avx512ifma: {:?}", is_x86_feature_detected!("avx512ifma"));
127-
println!("avx512pf: {:?}", is_x86_feature_detected!("avx512pf"));
128126
println!("avx512vbmi2: {:?}", is_x86_feature_detected!("avx512vbmi2"));
129127
println!("avx512vbmi: {:?}", is_x86_feature_detected!("avx512vbmi"));
130128
println!("avx512vl: {:?}", is_x86_feature_detected!("avx512vl"));

0 commit comments

Comments
 (0)
Failed to load comments.