authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-07 11:55:09+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-11-07 11:55:09+01:00
log19af9fa488ba7ddf2e7fd8f2f06ab594f7e23f91
treed73a87d727e10d47920e4f5e2dada703323aa0a8
parent4b593a6c24797484e68a668818736b0f6a8d81a2
parent483f9bd3670a52242d799dd4eee4273bdc714e8a
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #25848 from Rexicon226/llvm-valgrind-clobber

llvm: fix up clobbers for valgrind requests

1 files changed, 4 insertions(+), 4 deletions(-)

src/codegen/llvm.zig+4-4
......@@ -11672,7 +11672,7 @@ pub const FuncGen = struct {
1167211672 \\ srl $$0, $$0, 19
1167311673 \\ or $$13, $$13, $$13
1167411674 ,
11675 .constraints = "={$11},{$12},{$11},~{memory}",
11675 .constraints = "={$11},{$12},{$11},~{memory},~{$1}",
1167611676 },
1167711677 .mips64, .mips64el => .{
1167811678 .template =
......@@ -11680,7 +11680,7 @@ pub const FuncGen = struct {
1168011680 \\ dsll $$0, $$0, 29 ; dsll $$0, $$0, 19
1168111681 \\ or $$13, $$13, $$13
1168211682 ,
11683 .constraints = "={$11},{$12},{$11},~{memory}",
11683 .constraints = "={$11},{$12},{$11},~{memory},~{$1}",
1168411684 },
1168511685 .powerpc, .powerpcle => .{
1168611686 .template =
......@@ -11727,7 +11727,7 @@ pub const FuncGen = struct {
1172711727 \\ roll $$61, %edi ; roll $$51, %edi
1172811728 \\ xchgl %ebx, %ebx
1172911729 ,
11730 .constraints = "={edx},{eax},{edx},~{cc},~{memory}",
11730 .constraints = "={edx},{eax},{edx},~{cc},~{memory},~{dirflag},~{fpsr},~{flags}",
1173111731 },
1173211732 .x86_64 => .{
1173311733 .template =
......@@ -11735,7 +11735,7 @@ pub const FuncGen = struct {
1173511735 \\ rolq $$61, %rdi ; rolq $$51, %rdi
1173611736 \\ xchgq %rbx, %rbx
1173711737 ,
11738 .constraints = "={rdx},{rax},{edx},~{cc},~{memory}",
11738 .constraints = "={rdx},{rax},{rdx},~{cc},~{memory},~{dirflag},~{fpsr},~{flags}",
1173911739 },
1174011740 else => unreachable,
1174111741 };