mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-04 06:01:35 +11:00
correct inline logic
This commit is contained in:
parent
1a3b4319bc
commit
55394640b0
|
@ -1,7 +1,7 @@
|
||||||
mod gwilym_encoding;
|
mod gwilym_encoding;
|
||||||
mod load_dwarf;
|
mod load_dwarf;
|
||||||
|
|
||||||
use addr2line::gimli::{self, EndianReader};
|
use addr2line::gimli;
|
||||||
pub use gwilym_encoding::{gwilym_decode, GwilymDecodeError};
|
pub use gwilym_encoding::{gwilym_decode, GwilymDecodeError};
|
||||||
pub use load_dwarf::{load_dwarf, GimliDwarf, LoadDwarfError};
|
pub use load_dwarf::{load_dwarf, GimliDwarf, LoadDwarfError};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
@ -71,7 +71,7 @@ pub fn address_info(
|
||||||
infos.push(AddressInfo {
|
infos.push(AddressInfo {
|
||||||
location,
|
location,
|
||||||
is_interesting,
|
is_interesting,
|
||||||
is_inline: is_first,
|
is_inline: !is_first,
|
||||||
function: function_name,
|
function: function_name,
|
||||||
});
|
});
|
||||||
is_first = false;
|
is_first = false;
|
||||||
|
|
Loading…
Reference in a new issue