2015-10-18 14:32:50 -07:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-10-21 09:59:24 -07:00
|
|
|
// See rsbegin.rs for details.
|
|
|
|
|
2017-04-20 14:32:54 -07:00
|
|
|
#![feature(no_core, lang_items, optin_builtin_traits)]
|
2015-10-18 14:32:50 -07:00
|
|
|
#![crate_type="rlib"]
|
2016-09-12 22:40:14 -07:00
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
#[lang = "sync"]
|
|
|
|
trait Sync {}
|
|
|
|
impl<T> Sync for T {}
|
2017-04-20 14:32:54 -07:00
|
|
|
#[lang = "copy"]
|
|
|
|
trait Copy {}
|
|
|
|
#[lang = "freeze"]
|
|
|
|
trait Freeze {}
|
2017-10-14 18:23:50 -03:00
|
|
|
#[allow(unknown_lints)]
|
|
|
|
#[allow(auto_impl)]
|
2017-04-20 14:32:54 -07:00
|
|
|
impl Freeze for .. {}
|
|
|
|
|
2017-09-28 01:30:25 -07:00
|
|
|
#[lang = "drop_in_place"]
|
2017-04-20 14:32:54 -07:00
|
|
|
#[inline]
|
|
|
|
#[allow(unconditional_recursion)]
|
|
|
|
pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
|
|
|
|
drop_in_place(to_drop);
|
|
|
|
}
|
2015-10-18 14:32:50 -07:00
|
|
|
|
|
|
|
#[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
|
2016-05-29 21:04:21 +05:30
|
|
|
pub mod eh_frames {
|
2015-10-18 14:32:50 -07:00
|
|
|
// Terminate the frame unwind info section with a 0 as a sentinel;
|
|
|
|
// this would be the 'length' field in a real FDE.
|
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".eh_frame"]
|
|
|
|
pub static __EH_FRAME_END__: u32 = 0;
|
|
|
|
}
|