forked from M-Labs/artiq-zynq
remove unnecessary no_mangle
no_mangle does nothing on extern items as per https://github.com/rust-lang/rust/issues/78989#issuecomment-726163973 Closes #115
This commit is contained in:
parent
32048ead20
commit
57ae8619f8
|
@ -29,13 +29,9 @@ use super::{
|
|||
|
||||
// linker symbols
|
||||
extern "C" {
|
||||
#[no_mangle]
|
||||
static __text_start: u32;
|
||||
#[no_mangle]
|
||||
static __text_end: u32;
|
||||
#[no_mangle]
|
||||
static __exidx_start: u32;
|
||||
#[no_mangle]
|
||||
static __exidx_end: u32;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue