We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ae599 commit 7805dc5Copy full SHA for 7805dc5
crates/toolchain/transpiler/src/elf.rs
@@ -121,6 +121,8 @@ impl Elf {
121
122
for symbol in symtab.iter() {
123
if symbol.st_symtype() == elf::abi::STT_FUNC {
124
+ let raw_name = stringtab.get(symbol.st_name as usize).unwrap().to_string();
125
+ let demangled_name = rustc_demangle::demangle(&raw_name).to_string();
126
fn_bounds.insert(
127
symbol.st_value as u32,
128
FnBound {
0 commit comments