| ... | @@ -1977,9 +1977,9 @@ pub const DeclGen = struct { | ... | @@ -1977,9 +1977,9 @@ pub const DeclGen = struct { |
| 1977 | } | 1977 | } |
| 1978 | switch (CType.classifyInt(ty, zcu)) { | 1978 | switch (CType.classifyInt(ty, zcu)) { |
| 1979 | .void => unreachable, // opv | 1979 | .void => unreachable, // opv |
| 1980 | .small => try w.print("{c}{d}", .{ | 1980 | .small => |s| try w.print("{c}{d}", .{ |
| 1981 | signAbbrev(ty.intInfo(zcu).signedness), | 1981 | signAbbrev(ty.intInfo(zcu).signedness), |
| 1982 | ty.abiSize(zcu) * 8, | 1982 | s.bits(zcu.getTarget()), |
| 1983 | }), | 1983 | }), |
| 1984 | .big => try w.writeAll("big"), | 1984 | .big => try w.writeAll("big"), |
| 1985 | } | 1985 | } |