]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/intrinsic-alignment.rs
Rollup merge of #26800 - tshepang:comma, r=Gankro
[rust.git] / src / test / run-pass / intrinsic-alignment.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 #![feature(intrinsics, main)]
13
14 mod rusti {
15     extern "rust-intrinsic" {
16         pub fn pref_align_of<T>() -> usize;
17         pub fn min_align_of<T>() -> usize;
18     }
19 }
20
21 #[cfg(any(target_os = "linux",
22           target_os = "macos",
23           target_os = "freebsd",
24           target_os = "dragonfly",
25           target_os = "netbsd",
26           target_os = "openbsd"))]
27 mod m {
28     #[main]
29     #[cfg(target_arch = "x86")]
30     pub fn main() {
31         unsafe {
32             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
33             assert_eq!(::rusti::min_align_of::<u64>(), 4);
34         }
35     }
36
37     #[main]
38     #[cfg(any(target_arch = "x86_64", target_arch = "arm", target_arch = "aarch64"))]
39     pub fn main() {
40         unsafe {
41             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
42             assert_eq!(::rusti::min_align_of::<u64>(), 8);
43         }
44     }
45 }
46
47 #[cfg(target_os = "bitrig")]
48 mod m {
49     #[main]
50     #[cfg(target_arch = "x86_64")]
51     pub fn main() {
52         unsafe {
53             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
54             assert_eq!(::rusti::min_align_of::<u64>(), 8);
55         }
56     }
57 }
58
59 #[cfg(target_os = "windows")]
60 mod m {
61     #[main]
62     #[cfg(target_arch = "x86")]
63     pub fn main() {
64         unsafe {
65             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
66             assert_eq!(::rusti::min_align_of::<u64>(), 8);
67         }
68     }
69
70     #[main]
71     #[cfg(target_arch = "x86_64")]
72     pub fn main() {
73         unsafe {
74             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
75             assert_eq!(::rusti::min_align_of::<u64>(), 8);
76         }
77     }
78 }
79
80 #[cfg(target_os = "android")]
81 mod m {
82     #[main]
83     #[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
84     pub fn main() {
85         unsafe {
86             assert_eq!(::rusti::pref_align_of::<u64>(), 8);
87             assert_eq!(::rusti::min_align_of::<u64>(), 8);
88         }
89     }
90 }