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-06-20 16:39:23 -07:00
|
|
|
#![feature(intrinsics)]
|
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")]
|
2014-07-31 02:23:35 +02:00
|
|
|
#[cfg(target_os = "dragonfly")]
|
2012-04-30 16:44:34 -07:00
|
|
|
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")]
|
2014-08-02 01:38:06 +00:00
|
|
|
#[cfg(target_arch = "arm")]
|
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
|
|
|
}
|
|
|
|
|
2014-08-10 21:26:45 -07:00
|
|
|
#[cfg(target_os = "windows")]
|
2014-08-14 01:55:51 -07:00
|
|
|
/* NOTE: Remove after snapshot */#[cfg(stage0, target_os = "win32")]
|
2012-04-30 16:44:34 -07:00
|
|
|
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
|
|
|
}
|
2014-08-01 01:51:08 -07:00
|
|
|
|
|
|
|
#[main]
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
pub fn main() {
|
|
|
|
unsafe {
|
|
|
|
assert_eq!(::rusti::pref_align_of::<u64>(), 8u);
|
|
|
|
assert_eq!(::rusti::min_align_of::<u64>(), 8u);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|