aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLoris Cro <kappaloris@gmail.com>2023-06-18 16:21:16 +0200
committerGitHub <noreply@github.com>2023-06-18 16:21:16 +0200
commit3180a371e825e58a6aaadabff7350af25978b04e (patch)
tree3945f68601b361acc1fd44dbb4c14f7dafd8184e /src
parent329a585fbe50583d6cef7a554c27525afe2e9d41 (diff)
parente7fd70a951b5bb80e4bcab2414491dbf36ab65b9 (diff)
downloadzig-3180a371e825e58a6aaadabff7350af25978b04e.tar.gz
zig-3180a371e825e58a6aaadabff7350af25978b04e.zip
Merge pull request #16086 from der-teufel-programming/master
autodoc: Handle more InternPool.Index types properly in Autodoc
Diffstat (limited to 'src')
-rw-r--r--src/Autodoc.zig5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Autodoc.zig b/src/Autodoc.zig
index b34432fe26..ce4665f1ea 100644
--- a/src/Autodoc.zig
+++ b/src/Autodoc.zig
@@ -141,10 +141,12 @@ pub fn generateZirData(self: *Autodoc) !void {
.i8_type,
.u16_type,
.i16_type,
+ .u29_type,
.u32_type,
.i32_type,
.u64_type,
.i64_type,
+ .u80_type,
.u128_type,
.i128_type,
.usize_type,
@@ -157,14 +159,15 @@ pub fn generateZirData(self: *Autodoc) !void {
.c_ulong_type,
.c_longlong_type,
.c_ulonglong_type,
- .c_longdouble_type,
=> .{
.Int = .{ .name = try tmpbuf.toOwnedSlice() },
},
.f16_type,
.f32_type,
.f64_type,
+ .f80_type,
.f128_type,
+ .c_longdouble_type,
=> .{
.Float = .{ .name = try tmpbuf.toOwnedSlice() },
},