2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2012-04-30 16:44:34 -07:00
|
|
|
// xfail-fast Does not work with main in a submodule
|
2012-05-02 18:25:22 -07:00
|
|
|
|
2012-04-26 22:21:28 -07:00
|
|
|
#[abi = "rust-intrinsic"]
|
2012-07-03 16:11:00 -07:00
|
|
|
extern mod rusti {
|
2013-01-30 15:56:40 -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 {
|
|
|
|
#[cfg(target_arch = "x86")]
|
2012-12-28 17:17:05 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
|
|
|
assert ::rusti::pref_align_of::<u64>() == 8u;
|
|
|
|
assert ::rusti::min_align_of::<u64>() == 4u;
|
|
|
|
}
|
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 {
|
|
|
|
assert ::rusti::pref_align_of::<u64>() == 8u;
|
|
|
|
assert ::rusti::min_align_of::<u64>() == 8u;
|
|
|
|
}
|
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 {
|
|
|
|
#[cfg(target_arch = "x86")]
|
2012-12-28 17:17:05 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
|
|
|
assert ::rusti::pref_align_of::<u64>() == 8u;
|
|
|
|
assert ::rusti::min_align_of::<u64>() == 8u;
|
|
|
|
}
|
2012-04-30 16:44:34 -07:00
|
|
|
}
|
2012-04-26 22:21:28 -07:00
|
|
|
}
|