summaryrefslogtreecommitdiffstats
path: root/tests/ui/abi/issues/issue-62350-sysv-neg-reg-counts.rs
blob: 29b2405189cc3d72fe7e5e452729da3e9334c1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// run-pass
#![allow(dead_code)]
#![allow(improper_ctypes)]

// ignore-wasm32-bare no libc to test ffi with

#[derive(Copy, Clone)]
pub struct QuadFloats {
    a: f32,
    b: f32,
    c: f32,
    d: f32,
}

mod rustrt {
    use super::QuadFloats;

    #[link(name = "rust_test_helpers", kind = "static")]
    extern "C" {
        pub fn get_c_exhaust_sysv64_ints(
            _: *const (),
            _: *const (),
            _: *const (),
            _: *const (),
            _: *const (),
            _: *const (),
            _: *const (),
            h: QuadFloats,
        ) -> f32;
    }
}

fn test() {
    unsafe {
        let null = std::ptr::null();
        let q = QuadFloats { a: 10.2, b: 20.3, c: 30.4, d: 40.5 };
        assert_eq!(
            rustrt::get_c_exhaust_sysv64_ints(null, null, null, null, null, null, null, q),
            q.c,
        );
    }
}

pub fn main() {
    test();
}