2014-12-12 23:39:27 +00:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
2012-12-11 01:32:48 +00: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.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2011-11-16 00:33:07 +00:00
|
|
|
#[cfg(target_arch = "x86")]
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() { }
|
2011-11-16 00:33:07 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() { }
|
2013-04-23 02:31:54 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "arm")]
|
|
|
|
pub fn main() { }
|
2014-12-12 23:39:27 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
pub fn main() { }
|
2015-12-28 21:09:06 +00:00
|
|
|
|
2016-12-29 13:26:53 +00:00
|
|
|
#[cfg(target_arch = "mips")]
|
|
|
|
pub fn main() { }
|
|
|
|
|
|
|
|
#[cfg(target_arch = "mips64")]
|
|
|
|
pub fn main() { }
|
|
|
|
|
2015-12-28 21:09:06 +00:00
|
|
|
#[cfg(target_arch = "powerpc64")]
|
|
|
|
pub fn main() { }
|
2016-02-10 19:21:56 +00:00
|
|
|
|
2016-09-09 21:00:23 +00:00
|
|
|
#[cfg(target_arch = "s390x")]
|
|
|
|
pub fn main() { }
|
|
|
|
|
2016-02-10 19:21:56 +00:00
|
|
|
#[cfg(target_arch = "asmjs")]
|
|
|
|
pub fn main() { }
|