| ... | @@ -5012,7 +5012,7 @@ pub const FuncGen = struct { | ... | @@ -5012,7 +5012,7 @@ pub const FuncGen = struct { |
| 5012 | const compiler_rt_operand_abbrev = compilerRtFloatAbbrev(operand_bits); | 5012 | const compiler_rt_operand_abbrev = compilerRtFloatAbbrev(operand_bits); |
| 5013 | | 5013 | |
| 5014 | const compiler_rt_dest_abbrev = compilerRtIntAbbrev(rt_int_bits); | 5014 | const compiler_rt_dest_abbrev = compilerRtIntAbbrev(rt_int_bits); |
| 5015 | const sign_prefix = if (dest_scalar_ty.isSignedInt()) "" else "un"; | 5015 | const sign_prefix = if (dest_scalar_ty.isSignedInt()) "" else "uns"; |
| 5016 | | 5016 | |
| 5017 | var fn_name_buf: [64]u8 = undefined; | 5017 | var fn_name_buf: [64]u8 = undefined; |
| 5018 | const fn_name = std.fmt.bufPrintZ(&fn_name_buf, "__fix{s}{s}f{s}i", .{ | 5018 | const fn_name = std.fmt.bufPrintZ(&fn_name_buf, "__fix{s}{s}f{s}i", .{ |
| ... | @@ -9289,7 +9289,7 @@ fn needDbgVarWorkaround(dg: *DeclGen, ty: Type) bool { | ... | @@ -9289,7 +9289,7 @@ fn needDbgVarWorkaround(dg: *DeclGen, ty: Type) bool { |
| 9289 | } | 9289 | } |
| 9290 | | 9290 | |
| 9291 | fn compilerRtIntBits(bits: u16) u16 { | 9291 | fn compilerRtIntBits(bits: u16) u16 { |
| 9292 | inline for (.{ 8, 16, 32, 64, 128 }) |b| { | 9292 | inline for (.{ 32, 64, 128 }) |b| { |
| 9293 | if (bits <= b) { | 9293 | if (bits <= b) { |
| 9294 | return b; | 9294 | return b; |
| 9295 | } | 9295 | } |