2014-02-07 20:08:32 +01:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:32:48 -08:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-07 20:08:32 +01:00
|
|
|
// ignore-fast Does not work with main in a submodule
|
2012-05-02 18:25:22 -07:00
|
|
|
|
2013-03-05 14:42:58 -08:00
|
|
|
mod rusti {
|
2013-07-18 19:08:57 -07:00
|
|
|
extern "rust-intrinsic" {
|
2013-03-05 14:42:58 -08:00
|
|
|
pub fn pref_align_of<T>() -> uint;
|
|
|
|
pub fn min_align_of<T>() -> uint;
|
|
|
|
}
|
2012-04-26 22:21:28 -07:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:44:34 -07:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
mod m {
|
2013-04-29 16:16:58 -07:00
|
|
|
#[main]
|
2012-04-30 16:44:34 -07:00
|
|
|
#[cfg(target_arch = "x86")]
|
2012-12-28 17:17:05 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(::rusti::pref_align_of::<u64>(), 8u);
|
|
|
|
assert_eq!(::rusti::min_align_of::<u64>(), 4u);
|
2013-01-23 16:29:31 -08:00
|
|
|
}
|
2012-04-30 16:44:34 -07:00
|
|
|
}
|
|
|
|
|
2013-04-29 16:16:58 -07:00
|
|
|
#[main]
|
2012-04-30 16:44:34 -07:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2012-12-28 17:17:05 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(::rusti::pref_align_of::<u64>(), 8u);
|
|
|
|
assert_eq!(::rusti::min_align_of::<u64>(), 8u);
|
2013-01-23 16:29:31 -08:00
|
|
|
}
|
2012-04-30 16:44:34 -07:00
|
|
|
}
|
2012-04-26 22:21:28 -07:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:44:34 -07:00
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
mod m {
|
2013-04-29 16:16:58 -07:00
|
|
|
#[main]
|
2012-04-30 16:44:34 -07:00
|
|
|
#[cfg(target_arch = "x86")]
|
2012-12-28 17:17:05 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(::rusti::pref_align_of::<u64>(), 8u);
|
|
|
|
assert_eq!(::rusti::min_align_of::<u64>(), 8u);
|
2013-01-23 16:29:31 -08:00
|
|
|
}
|
2012-04-30 16:44:34 -07:00
|
|
|
}
|
2012-04-26 22:21:28 -07:00
|
|
|
}
|
2013-04-23 11:31:54 +09:00
|
|
|
|
|
|
|
#[cfg(target_os = "android")]
|
|
|
|
mod m {
|
2013-04-29 16:16:58 -07:00
|
|
|
#[main]
|
2013-04-23 11:31:54 +09:00
|
|
|
#[cfg(target_arch = "arm")]
|
|
|
|
pub fn main() {
|
|
|
|
unsafe {
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(::rusti::pref_align_of::<u64>(), 8u);
|
2013-06-17 18:50:29 +09:00
|
|
|
assert_eq!(::rusti::min_align_of::<u64>(), 8u);
|
2013-04-23 11:31:54 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|