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