rename exception symbols in host code

master
Sebastien Bourdeauducq 2022-02-23 11:43:41 +08:00
parent 75fde1bbf7
commit aa79c8d8b7
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ pub extern "C" fn output_int32_list(x: &cslice::CSlice<i32>) {
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn __artiq_personality(_state: u32, _exception_object: u32, _context: u32) -> u32 { pub extern "C" fn __nac3_personality(_state: u32, _exception_object: u32, _context: u32) -> u32 {
unimplemented!(); unimplemented!();
} }

View File

@ -43,7 +43,7 @@ pub extern "C" fn print_int64(x: i64) {
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn __artiq_personality(_state: u32, _exception_object: u32, _context: u32) -> u32 { pub extern "C" fn __nac3_personality(_state: u32, _exception_object: u32, _context: u32) -> u32 {
unimplemented!(); unimplemented!();
} }