about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorKjetil Kjeka <kjetil@muybridge.com>2023-10-27 11:38:07 +0200
committerKjetil Kjeka <kjetil@muybridge.com>2023-10-27 11:39:20 +0200
commitbb45c812e0b8e45a704b768a6a2080f6f794667b (patch)
tree19136639bdedc958ec57c1a0a6bab180b7808a4a /compiler/rustc_codegen_llvm/src
parent4d33876778011f7273ab3ebdbdbc35928832332b (diff)
downloadrust-bb45c812e0b8e45a704b768a6a2080f6f794667b.tar.gz
rust-bb45c812e0b8e45a704b768a6a2080f6f794667b.zip
Link to correct issue in PassMode::Direct ptx-kernel exception
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/abi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs
index 7d742ac732c..6e3a4cae2f6 100644
--- a/compiler/rustc_codegen_llvm/src/abi.rs
+++ b/compiler/rustc_codegen_llvm/src/abi.rs
@@ -365,7 +365,7 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> {
                         //
                         // The unstable abi `PtxKernel` also uses Direct for now.
                         // It needs to switch to something else before stabilization can happen.
-                        // (Tracking issue abi_ptx: https://github.com/rust-lang/rust/issues/38788)
+                        // (See issue: https://github.com/rust-lang/rust/issues/117271)
                         assert!(
                             matches!(&*cx.tcx.sess.target.arch, "wasm32" | "wasm64")
                                 || self.conv == Conv::PtxKernel,