We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83960e0 commit 741a66eCopy full SHA for 741a66e
lib/std/zig/llvm/BitcodeReader.zig
@@ -177,7 +177,7 @@ pub fn next(bc: *BitcodeReader) !?Item {
177
178
pub fn skipBlock(bc: *BitcodeReader, block: Block) !void {
179
assert(bc.bit_offset == 0);
180
- try bc.reader.discardAll(4 * @as(u34, block.len));
+ try bc.reader.discardAll(4 * @as(usize, block.len));
181
try bc.endBlock();
182
}
183
0 commit comments