File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ use super::EhRef;
44extern "C" {
55 static __text_start: usize ;
66 static __text_end: usize ;
7- static __ehframehdr_start : usize ;
8- static __ehframehdr_end : usize ;
7+ static __eh_frame_hdr_start : usize ;
8+ static __eh_frame_hdr_end : usize ;
99}
1010
1111pub fn find_cfi_sections ( ) -> Vec < EhRef > {
@@ -15,8 +15,8 @@ pub fn find_cfi_sections() -> Vec<EhRef> {
1515 // of those values.
1616 let text_start = & __text_start as * const _ as u64 ;
1717 let text_end = & __text_end as * const _ as u64 ;
18- let cfi_start = & __ehframehdr_start as * const _ as u64 ;
19- let cfi_end = & __ehframehdr_end as * const _ as u64 ;
18+ let cfi_start = & __eh_frame_hdr_start as * const _ as u64 ;
19+ let cfi_end = & __eh_frame_hdr_end as * const _ as u64 ;
2020
2121 cfi. push ( EhRef {
2222 obj_base : 0 ,
You can’t perform that action at this time.
0 commit comments