mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 14:22:26 -05:00
[chore]: Bump github.com/tetratelabs/wazero from 1.8.2 to 1.9.0 (#3827)
Bumps [github.com/tetratelabs/wazero](https://github.com/tetratelabs/wazero) from 1.8.2 to 1.9.0. - [Release notes](https://github.com/tetratelabs/wazero/releases) - [Commits](https://github.com/tetratelabs/wazero/compare/v1.8.2...v1.9.0) --- updated-dependencies: - dependency-name: github.com/tetratelabs/wazero dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
2decea6335
commit
d8c027f8af
14 changed files with 88 additions and 80 deletions
|
|
@ -1918,6 +1918,9 @@ func (m *machine) lowerCall(si *ssa.Instruction) {
|
|||
for i := regalloc.RealReg(0); i < 16; i++ {
|
||||
m.insert(m.allocateInstr().asDefineUninitializedReg(regInfo.RealRegToVReg[xmm0+i]))
|
||||
}
|
||||
// Since Go 1.24 it may also use DX, which is not reserved for the function call's 3 args.
|
||||
// https://github.com/golang/go/blob/go1.24.0/src/runtime/memmove_amd64.s#L123
|
||||
m.insert(m.allocateInstr().asDefineUninitializedReg(regInfo.RealRegToVReg[rdx]))
|
||||
}
|
||||
|
||||
if isDirectCall {
|
||||
|
|
@ -1933,6 +1936,7 @@ func (m *machine) lowerCall(si *ssa.Instruction) {
|
|||
for i := regalloc.RealReg(0); i < 16; i++ {
|
||||
m.insert(m.allocateInstr().asNopUseReg(regInfo.RealRegToVReg[xmm0+i]))
|
||||
}
|
||||
m.insert(m.allocateInstr().asNopUseReg(regInfo.RealRegToVReg[rdx]))
|
||||
}
|
||||
|
||||
var index int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue