rust/tests/codegen/asm-maybe-uninit.rs
Nicholas Nethercote 72800d3b89 Run rustfmt on tests/codegen/.
Except for `simd-intrinsic/`, which has a lot of files containing
multiple types like `u8x64` which really are better when hand-formatted.

There is a surprising amount of two-space indenting in this directory.

Non-trivial changes:
- `rustfmt::skip` needed in `debug-column.rs` to preserve meaning of the
  test.
- `rustfmt::skip` used in a few places where hand-formatting read more
  nicely: `enum/enum-match.rs`
- Line number adjustments needed for the expected output of
  `debug-column.rs` and `coroutine-debug.rs`.
2024-05-31 15:56:43 +10:00

28 lines
613 B
Rust

//@ compile-flags: -O
//@ only-x86_64
#![crate_type = "rlib"]
#![allow(asm_sub_register)]
use std::arch::asm;
use std::mem::MaybeUninit;
// CHECK-LABEL: @int
#[no_mangle]
pub unsafe fn int(x: MaybeUninit<i32>) -> MaybeUninit<i32> {
let y: MaybeUninit<i32>;
asm!("/*{}{}*/", in(reg) x, out(reg) y);
y
}
// CHECK-LABEL: @inout
#[no_mangle]
pub unsafe fn inout(mut x: i32) -> MaybeUninit<u32> {
let mut y: MaybeUninit<u32>;
asm!("/*{}*/", inout(reg) x => y);
asm!("/*{}*/", inout(reg) y => x);
asm!("/*{}*/", inlateout(reg) x => y);
asm!("/*{}*/", inlateout(reg) y => x);
y
}