diff options
| author | bors <bors@rust-lang.org> | 2025-07-27 03:20:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-07-27 03:20:34 +0000 |
| commit | 052114f0c5e8d49f62f8caba364b07017310ab09 (patch) | |
| tree | a7a0d10c478dea6c11b264fc84e27ce02fbebade /compiler/rustc_codegen_llvm/src/llvm_util.rs | |
| parent | 283a0746a244a88503fed61844f44df925ccdbb6 (diff) | |
| parent | 8aa3d41b8527f9f78e0f2459b50a6e13aea35144 (diff) | |
| download | rust-052114f0c5e8d49f62f8caba364b07017310ab09.tar.gz rust-052114f0c5e8d49f62f8caba364b07017310ab09.zip | |
Auto merge of #144526 - jhpratt:rollup-1x1tyvn, r=jhpratt
Rollup of 13 pull requests Successful merges: - rust-lang/rust#141840 (If `HOME` is empty, use the fallback instead) - rust-lang/rust#144359 (add codegen test for variadics) - rust-lang/rust#144379 (test using multiple c-variadic ABIs in the same program) - rust-lang/rust#144383 (disable cfg.has_reliable_f128 on amdgcn) - rust-lang/rust#144409 (Stop compilation early if macro expansion failed) - rust-lang/rust#144422 (library/windows_targets: Fix macro expansion error in 'link' macro) - rust-lang/rust#144429 (Enable outline-atomics for aarch64-unknown-linux-musl) - rust-lang/rust#144430 (tests: aarch64-outline-atomics: Remove hardcoded target) - rust-lang/rust#144445 (Fix `./x check bootstrap` (again)) - rust-lang/rust#144453 (canonicalize build root in `tests/run-make/linker-warning`) - rust-lang/rust#144464 (Only run bootstrap tests in `x test` on CI) - rust-lang/rust#144470 (clif: Don't set the `compiler-builtins-no-f16-f128` feature) - rust-lang/rust#144480 (Revert "coverage: Enlarge empty spans during MIR instrumentation, not codegen") r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm_util.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/llvm_util.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm_util.rs b/compiler/rustc_codegen_llvm/src/llvm_util.rs index 8edbae115bf..53899da183a 100644 --- a/compiler/rustc_codegen_llvm/src/llvm_util.rs +++ b/compiler/rustc_codegen_llvm/src/llvm_util.rs @@ -405,6 +405,8 @@ fn update_target_reliable_float_cfg(sess: &Session, cfg: &mut TargetConfig) { ("mips64" | "mips64r6", _) => false, // Selection bug <https://github.com/llvm/llvm-project/issues/95471> ("nvptx64", _) => false, + // Unsupported https://github.com/llvm/llvm-project/issues/121122 + ("amdgpu", _) => false, // ABI bugs <https://github.com/rust-lang/rust/issues/125109> et al. (full // list at <https://github.com/rust-lang/rust/issues/116909>) ("powerpc" | "powerpc64", _) => false, |
