aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorMatthew Lugg <mlugg@mlugg.co.uk>2024-07-16 19:22:39 +0100
committerGitHub <noreply@github.com>2024-07-16 19:22:39 +0100
commitee695c8ef40ae7cecb4b9a77c8a6dcbe53d4f013 (patch)
tree91fbc76758cd5b2630c0f7f846e1b5fc7146369b /src/arch
parenta58ceb3d554a9565a6cc0443f6384149ae2b3145 (diff)
parentf84a4953d29ffc2bdc94fa353cac685430e6bbe4 (diff)
downloadzig-ee695c8ef40ae7cecb4b9a77c8a6dcbe53d4f013.tar.gz
zig-ee695c8ef40ae7cecb4b9a77c8a6dcbe53d4f013.zip
Merge pull request #20637 from mlugg/comptime-resolution-strat
Type,Value: mark `ResolveStrat` parameter of type queries as `comptime`
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86_64/CodeGen.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86_64/CodeGen.zig b/src/arch/x86_64/CodeGen.zig
index dfee2a3bf9..1b8d84aa23 100644
--- a/src/arch/x86_64/CodeGen.zig
+++ b/src/arch/x86_64/CodeGen.zig
@@ -17975,8 +17975,8 @@ fn airShuffle(self: *Self, inst: Air.Inst.Index) !void {
break :result null;
}) orelse return self.fail("TODO implement airShuffle from {} and {} to {} with {}", .{
- lhs_ty.fmt(pt), rhs_ty.fmt(pt), dst_ty.fmt(pt),
- Value.fromInterned(extra.mask).fmtValue(pt, null),
+ lhs_ty.fmt(pt), rhs_ty.fmt(pt), dst_ty.fmt(pt),
+ Value.fromInterned(extra.mask).fmtValue(pt),
});
return self.finishAir(inst, result, .{ extra.a, extra.b, .none });
}