From bc377183ce687ab186ed1544d01f9680eee55f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 14 May 2025 21:18:26 +0200 Subject: [PATCH] reduce: Fix build due to std.mem.Alignment changes. Closes #23884. --- lib/compiler/reduce.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/reduce.zig b/lib/compiler/reduce.zig index 398069f7f9..57b4fd5b1b 100644 --- a/lib/compiler/reduce.zig +++ b/lib/compiler/reduce.zig @@ -403,7 +403,7 @@ fn parse(gpa: Allocator, file_path: []const u8) !Ast { file_path, std.math.maxInt(u32), null, - 1, + .fromByteUnits(1), 0, ) catch |err| { fatal("unable to open '{s}': {s}", .{ file_path, @errorName(err) });