Skip to content

Commit 07968cb

Browse files
committed
Add demangling for f16 and f128
1 parent af38dc6 commit 07968cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/v0.rs

+2
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,10 @@ fn basic_type(tag: u8) -> Option<&'static str> {
385385
b'y' => "u64",
386386
b'o' => "u128",
387387
b'j' => "usize",
388+
b'k' => "f16",
388389
b'f' => "f32",
389390
b'd' => "f64",
391+
b'q' => "f128",
390392
b'z' => "!",
391393
b'p' => "_",
392394
b'v' => "...",

0 commit comments

Comments
 (0)