compiler: fix compilation for 32-bit targets

This commit is contained in:
Andrew Kelley
2023-09-21 15:27:25 -07:00
parent 2e5d13e9cf
commit 55bc8a7fa9
3 changed files with 4 additions and 3 deletions

View File

@@ -6657,7 +6657,7 @@ pub fn structFieldAlignmentExtern(mod: *Module, field_ty: Type) Alignment {
pub fn structPackedFieldBitOffset(
mod: *Module,
struct_type: InternPool.Key.StructType,
field_index: usize,
field_index: u32,
) u16 {
const ip = &mod.intern_pool;
assert(struct_type.layout == .Packed);