about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-02-16 19:29:38 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-02-17 18:20:34 +0000
commit7bd3b771b0882768f4f76116a7e8d08d0e418dbb (patch)
tree233b5f1856a2dd4f83b3d61956eaa8ea5456f08d
parente58bb2acbd3a2c61d4c492c322e9c53ed3068489 (diff)
downloadrust-7bd3b771b0882768f4f76116a7e8d08d0e418dbb.tar.gz
rust-7bd3b771b0882768f4f76116a7e8d08d0e418dbb.zip
Add fixme
-rw-r--r--src/cast.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cast.rs b/src/cast.rs
index 0ab29f335a0..a474acedcb0 100644
--- a/src/cast.rs
+++ b/src/cast.rs
@@ -65,6 +65,7 @@ pub(crate) fn clif_int_or_float_cast(
             );
 
             if fx.tcx.sess.target.is_like_windows {
+                // FIXME move this logic into lib_call
                 let arg_place = CPlace::new_stack_slot(
                     fx,
                     fx.layout_of(if from_signed { fx.tcx.types.i128 } else { fx.tcx.types.u128 }),