| ... | @@ -141,10 +141,12 @@ pub fn generateZirData(self: *Autodoc) !void { | ... | @@ -141,10 +141,12 @@ pub fn generateZirData(self: *Autodoc) !void { |
| 141 | .i8_type, | 141 | .i8_type, |
| 142 | .u16_type, | 142 | .u16_type, |
| 143 | .i16_type, | 143 | .i16_type, |
| | 144 | .u29_type, |
| 144 | .u32_type, | 145 | .u32_type, |
| 145 | .i32_type, | 146 | .i32_type, |
| 146 | .u64_type, | 147 | .u64_type, |
| 147 | .i64_type, | 148 | .i64_type, |
| | 149 | .u80_type, |
| 148 | .u128_type, | 150 | .u128_type, |
| 149 | .i128_type, | 151 | .i128_type, |
| 150 | .usize_type, | 152 | .usize_type, |
| ... | @@ -157,14 +159,15 @@ pub fn generateZirData(self: *Autodoc) !void { | ... | @@ -157,14 +159,15 @@ pub fn generateZirData(self: *Autodoc) !void { |
| 157 | .c_ulong_type, | 159 | .c_ulong_type, |
| 158 | .c_longlong_type, | 160 | .c_longlong_type, |
| 159 | .c_ulonglong_type, | 161 | .c_ulonglong_type, |
| 160 | .c_longdouble_type, | | |
| 161 | => .{ | 162 | => .{ |
| 162 | .Int = .{ .name = try tmpbuf.toOwnedSlice() }, | 163 | .Int = .{ .name = try tmpbuf.toOwnedSlice() }, |
| 163 | }, | 164 | }, |
| 164 | .f16_type, | 165 | .f16_type, |
| 165 | .f32_type, | 166 | .f32_type, |
| 166 | .f64_type, | 167 | .f64_type, |
| | 168 | .f80_type, |
| 167 | .f128_type, | 169 | .f128_type, |
| | 170 | .c_longdouble_type, |
| 168 | => .{ | 171 | => .{ |
| 169 | .Float = .{ .name = try tmpbuf.toOwnedSlice() }, | 172 | .Float = .{ .name = try tmpbuf.toOwnedSlice() }, |
| 170 | }, | 173 | }, |