diff options
| author | bors <bors@rust-lang.org> | 2023-10-28 06:10:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-10-28 06:10:23 +0000 |
| commit | 6212cc690762057f630c20806926432fc4978bac (patch) | |
| tree | 650d4c9832671923ce2c2e67a5109d6f2f0c0441 /compiler/rustc_codegen_llvm/src | |
| parent | 5f3d81a5896bddc373803cb673ac66d91c364f75 (diff) | |
| parent | 293501b24ef918ad1fa6e95c16931742561c0813 (diff) | |
| download | rust-6212cc690762057f630c20806926432fc4978bac.tar.gz rust-6212cc690762057f630c20806926432fc4978bac.zip | |
Auto merge of #3147 - rust-lang:rustup-2023-10-28, r=saethlin
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/abi.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs index 9e834b83df4..6e3a4cae2f6 100644 --- a/compiler/rustc_codegen_llvm/src/abi.rs +++ b/compiler/rustc_codegen_llvm/src/abi.rs @@ -362,9 +362,14 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> { // currently use this mode so we have to allow it -- but we absolutely // shouldn't let any more targets do that. // (Also see <https://github.com/rust-lang/rust/issues/115666>.) + // + // The unstable abi `PtxKernel` also uses Direct for now. + // It needs to switch to something else before stabilization can happen. + // (See issue: https://github.com/rust-lang/rust/issues/117271) assert!( - matches!(&*cx.tcx.sess.target.arch, "wasm32" | "wasm64"), - "`PassMode::Direct` for aggregates only allowed on wasm targets\nProblematic type: {:#?}", + matches!(&*cx.tcx.sess.target.arch, "wasm32" | "wasm64") + || self.conv == Conv::PtxKernel, + "`PassMode::Direct` for aggregates only allowed on wasm and `extern \"ptx-kernel\"` fns\nProblematic type: {:#?}", arg.layout, ); } |
