Skip to content

Commit eae824d

Browse files
Rollup merge of #100317 - kjetilkjeka:remove-nvptx32-logic, r=eddyb
Remove logic related to deprecated nvptx-nvidia-cuda (32-bit) target As described in the MCP rust-lang/compiler-team#496 (comment) r? ``@eddyb``
2 parents d0d2f60 + 22930b7 commit eae824d

File tree

2 files changed

+0
-35
lines changed

2 files changed

+0
-35
lines changed

compiler/rustc_target/src/abi/call/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ mod m68k;
1414
mod mips;
1515
mod mips64;
1616
mod msp430;
17-
mod nvptx;
1817
mod nvptx64;
1918
mod powerpc;
2019
mod powerpc64;
@@ -702,7 +701,6 @@ impl<'a, Ty> FnAbi<'a, Ty> {
702701
"msp430" => msp430::compute_abi_info(self),
703702
"sparc" => sparc::compute_abi_info(cx, self),
704703
"sparc64" => sparc64::compute_abi_info(cx, self),
705-
"nvptx" => nvptx::compute_abi_info(self),
706704
"nvptx64" => {
707705
if cx.target_spec().adjust_abi(abi) == spec::abi::Abi::PtxKernel {
708706
nvptx64::compute_ptx_kernel_abi_info(cx, self)

compiler/rustc_target/src/abi/call/nvptx.rs

-33
This file was deleted.

0 commit comments

Comments
 (0)