Skip to content

Commit

Permalink
Rollup merge of rust-lang#100317 - kjetilkjeka:remove-nvptx32-logic, …
Browse files Browse the repository at this point in the history
…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``
  • Loading branch information
compiler-errors committed Aug 10, 2022
2 parents d0d2f60 + 22930b7 commit eae824d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
2 changes: 0 additions & 2 deletions compiler/rustc_target/src/abi/call/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ mod m68k;
mod mips;
mod mips64;
mod msp430;
mod nvptx;
mod nvptx64;
mod powerpc;
mod powerpc64;
Expand Down Expand Up @@ -702,7 +701,6 @@ impl<'a, Ty> FnAbi<'a, Ty> {
"msp430" => msp430::compute_abi_info(self),
"sparc" => sparc::compute_abi_info(cx, self),
"sparc64" => sparc64::compute_abi_info(cx, self),
"nvptx" => nvptx::compute_abi_info(self),
"nvptx64" => {
if cx.target_spec().adjust_abi(abi) == spec::abi::Abi::PtxKernel {
nvptx64::compute_ptx_kernel_abi_info(cx, self)
Expand Down
33 changes: 0 additions & 33 deletions compiler/rustc_target/src/abi/call/nvptx.rs

This file was deleted.

0 comments on commit eae824d

Please sign in to comment.