X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Frtstartup%2Frsbegin.rs;h=f92ff9f071a487d5bb4d91c0e58a7b72b7bf7a4f;hb=b626202087dff72216c14e08e11d936136dc2126;hp=4ec0857f051313222d34214133a53ee6d198424f;hpb=7489ee9c6f92050a12a3a3097df0a7d3737d82ec;p=rust.git diff --git a/src/rtstartup/rsbegin.rs b/src/rtstartup/rsbegin.rs index 4ec0857f051..f92ff9f071a 100644 --- a/src/rtstartup/rsbegin.rs +++ b/src/rtstartup/rsbegin.rs @@ -1,13 +1,3 @@ -// 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 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - // rsbegin.o and rsend.o are the so called "compiler runtime startup objects". // They contain code needed to correctly initialize the compiler runtime. // @@ -78,18 +68,12 @@ impl ::Copy for $t {} unsafe fn init() { // register unwind info on module startup - rust_eh_register_frames( - &__EH_FRAME_BEGIN__ as *const u8, - &mut OBJ as *mut _ as *mut u8, - ); + rust_eh_register_frames(&__EH_FRAME_BEGIN__ as *const u8, &mut OBJ as *mut _ as *mut u8); } unsafe fn uninit() { // unregister on shutdown - rust_eh_unregister_frames( - &__EH_FRAME_BEGIN__ as *const u8, - &mut OBJ as *mut _ as *mut u8, - ); + rust_eh_unregister_frames(&__EH_FRAME_BEGIN__ as *const u8, &mut OBJ as *mut _ as *mut u8); } // MSVC-specific init/uninit routine registration