summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_target/src/abi/call/nvptx64.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_target/src/abi/call/nvptx64.rs')
-rw-r--r--compiler/rustc_target/src/abi/call/nvptx64.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/compiler/rustc_target/src/abi/call/nvptx64.rs b/compiler/rustc_target/src/abi/call/nvptx64.rs
index 4abe51cd6..5c040ce9c 100644
--- a/compiler/rustc_target/src/abi/call/nvptx64.rs
+++ b/compiler/rustc_target/src/abi/call/nvptx64.rs
@@ -4,12 +4,18 @@ use crate::abi::{HasDataLayout, TyAbiInterface};
fn classify_ret<Ty>(ret: &mut ArgAbi<'_, Ty>) {
if ret.layout.is_aggregate() && ret.layout.size.bits() > 64 {
ret.make_indirect();
+ } else {
+ // FIXME: this is wrong! Need to decide which ABI we really want here.
+ ret.make_direct_deprecated();
}
}
fn classify_arg<Ty>(arg: &mut ArgAbi<'_, Ty>) {
if arg.layout.is_aggregate() && arg.layout.size.bits() > 64 {
arg.make_indirect();
+ } else {
+ // FIXME: this is wrong! Need to decide which ABI we really want here.
+ arg.make_direct_deprecated();
}
}
@@ -30,6 +36,9 @@ where
_ => unreachable!("Align is given as power of 2 no larger than 16 bytes"),
};
arg.cast_to(Uniform { unit, total: Size::from_bytes(2 * align_bytes) });
+ } else {
+ // FIXME: find a better way to do this. See https://github.com/rust-lang/rust/issues/117271.
+ arg.make_direct_deprecated();
}
}