Commit aff84b17 authored by Rob Pike's avatar Rob Pike

cmd/asm: fix build for new aliases

Missing leading A on names.

Change-Id: I6f3a66bdd3a21220f45a898f0822930b6a7bfa38
Reviewed-on: https://go-review.googlesource.com/5801Reviewed-by: 's avatarRob Pike <r@golang.org>
parent 90590a0c
...@@ -229,11 +229,11 @@ func archAmd64() *Arch { ...@@ -229,11 +229,11 @@ func archAmd64() *Arch {
instructions["JNGE"] = x86.AJLT instructions["JNGE"] = x86.AJLT
instructions["JNL"] = x86.AJGE instructions["JNL"] = x86.AJGE
instructions["JNLE"] = x86.AJGT instructions["JNLE"] = x86.AJGT
instructions["JNO"] = x86.JOC instructions["JNO"] = x86.AJOC
instructions["JNP"] = x86.AJPC instructions["JNP"] = x86.AJPC
instructions["JNS"] = x86.AJPL instructions["JNS"] = x86.AJPL
instructions["JNZ"] = x86.AJNE instructions["JNZ"] = x86.AJNE
instructions["JO"] = x86.JOS instructions["JO"] = x86.AJOS
instructions["JP"] = x86.AJPS instructions["JP"] = x86.AJPS
instructions["JPE"] = x86.AJPS instructions["JPE"] = x86.AJPS
instructions["JPO"] = x86.AJPC instructions["JPO"] = x86.AJPC
...@@ -242,13 +242,13 @@ func archAmd64() *Arch { ...@@ -242,13 +242,13 @@ func archAmd64() *Arch {
instructions["MASKMOVDQU"] = x86.AMASKMOVOU instructions["MASKMOVDQU"] = x86.AMASKMOVOU
instructions["MOVD"] = x86.AMOVQ instructions["MOVD"] = x86.AMOVQ
instructions["MOVDQ2Q"] = x86.AMOVQ instructions["MOVDQ2Q"] = x86.AMOVQ
instructions["MOVNTDQ"] = x86.MOVNTO instructions["MOVNTDQ"] = x86.AMOVNTO
instructions["MOVOA"] = x86.AMOVO instructions["MOVOA"] = x86.AMOVO
instructions["MOVOA"] = x86.MOVO instructions["MOVOA"] = x86.AMOVO
instructions["PF2ID"] = x86.PF2IL instructions["PF2ID"] = x86.APF2IL
instructions["PI2FD"] = x86.PI2FL instructions["PI2FD"] = x86.API2FL
instructions["PSLLDQ"] = x86.PSLLO instructions["PSLLDQ"] = x86.APSLLO
instructions["PSRLDQ"] = x86.PSRLO instructions["PSRLDQ"] = x86.APSRLO
unaryDestination := make(map[int]bool) // Instruction takes one operand and result is a destination. unaryDestination := make(map[int]bool) // Instruction takes one operand and result is a destination.
// These instructions write to prog.To. // These instructions write to prog.To.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment