You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@mvdan tells me that the assembler is choking on the imm8 because it is > 127 due to the use of a int8 internally in the assembler, which is incorrect as the argument is 4 2-bit indices.
The text was updated successfully, but these errors were encountered:
What version of Go are you using (
go version
)?go version go1.10 linux/amd64
Does this issue reproduce with the latest release?
Yes
What did you do?
Ported assembly from an existing project (gas) to Go's dialect, which uses
VPERMQ
.What did you expect to see?
Working output.
What did you see instead?
@mvdan tells me that the assembler is choking on the imm8 because it is > 127 due to the use of a
int8
internally in the assembler, which is incorrect as the argument is 4 2-bit indices.The text was updated successfully, but these errors were encountered: