Skip to content

Commit

Permalink
Stop using the avx512er and avx512pf x86 target features
Browse files Browse the repository at this point in the history
They are no longer supported by LLVM 19.

Fixes rust-lang#125492
  • Loading branch information
zmodem committed May 24, 2024
1 parent a365890 commit dd828cf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions std/tests/run-time-detect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,8 @@ fn x86_all() {
println!("avx512bw: {:?}", is_x86_feature_detected!("avx512bw"));
println!("avx512cd: {:?}", is_x86_feature_detected!("avx512cd"));
println!("avx512dq: {:?}", is_x86_feature_detected!("avx512dq"));
println!("avx512er: {:?}", is_x86_feature_detected!("avx512er"));
println!("avx512f: {:?}", is_x86_feature_detected!("avx512f"));
println!("avx512ifma: {:?}", is_x86_feature_detected!("avx512ifma"));
println!("avx512pf: {:?}", is_x86_feature_detected!("avx512pf"));
println!("avx512vbmi2: {:?}", is_x86_feature_detected!("avx512vbmi2"));
println!("avx512vbmi: {:?}", is_x86_feature_detected!("avx512vbmi"));
println!("avx512vl: {:?}", is_x86_feature_detected!("avx512vl"));
Expand Down

0 comments on commit dd828cf

Please sign in to comment.