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
Dylan-DPC authored Aug 10, 2022
2 parents 05f453b + 22930b7 commit 8fc0fda
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 8fc0fda

Please sign in to comment.