Skip to content

Commit

Permalink
Add demangling for f16 and f128
Browse files Browse the repository at this point in the history
`k` was selected for `f16` and `q` for `f128`. These are different from LLVM's
defaults.
  • Loading branch information
tgross35 committed Dec 4, 2023
1 parent af38dc6 commit 2ba24a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,10 @@ fn basic_type(tag: u8) -> Option<&'static str> {
b'y' => "u64",
b'o' => "u128",
b'j' => "usize",
b'k' => "f16",
b'f' => "f32",
b'd' => "f64",
b'q' => "f128",
b'z' => "!",
b'p' => "_",
b'v' => "...",
Expand Down

0 comments on commit 2ba24a9

Please sign in to comment.