Skip to content

Commit

Permalink
fix: fix VMOVDQU64k
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Sep 30, 2024
1 parent 39bbd7a commit 3ee6b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amd64/instructions.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (amd64 *Amd64) VMOVDQU64(r1, r2 interface{}, comment ...string) {

// VMOVDQU64 Move Unaligned Quadword Values
func (amd64 *Amd64) VMOVDQU64k(r1, k, r2 interface{}, comment ...string) {
amd64.writeOp(comment, "VMOVDQU64", r1, r2)
amd64.writeOp(comment, "VMOVDQU64", r1, k, r2)
}

// VPADDQ Add Packed Quadword Integers
Expand Down

0 comments on commit 3ee6b82

Please sign in to comment.