| author | |
| committer | |
| log | 692bd03489bdceac29e2be30bd2a63eb3ad079aa |
| tree | fe683fd1f4bc23046b95ad668e642bb29e9fd593 |
| parent | 022fcc586971fa59f0e5c9f5a38a87735533fc29 |
| signature |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/zig/llvm/Builder.zig+2-2| ... | ... | @@ -13947,8 +13947,8 @@ pub fn toBitcode(self: *Builder, allocator: Allocator, producer: Producer) bitco |
| 13947 | 13947 | const bit_count = extra.type.scalarBits(self); |
| 13948 | 13948 | const val: i64 = if (bit_count <= 64) |
| 13949 | 13949 | bigint.toInt(i64) catch unreachable |
| 13950 | else if (bigint.toInt(u64)) |val| | |
| 13951 | @bitCast(val) | |
| 13950 | else if (bigint.toInt(u63)) |val| | |
| 13951 | @bitCast(@as(u64, val)) | |
| 13952 | 13952 | else |_| { |
| 13953 | 13953 | const limbs = try record.addManyAsSlice( |
| 13954 | 13954 | self.gpa, |