Skip to content

Commit

Permalink
Rollup merge of rust-lang#125498 - zmodem:avx512er, r=workingjubilee
Browse files Browse the repository at this point in the history
Stop using the avx512er and avx512pf x86 target features

They are no longer supported by LLVM 19.

Fixes rust-lang#125492
  • Loading branch information
matthiaskrgr authored May 25, 2024
2 parents f52291b + dd828cf commit d6812d5
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 d6812d5

Please sign in to comment.