]> Cypherpunks repositories - gostls13.git/commit
cmd/internal/obj/x86: change SHRQ to store second source in From3, not jammed into...
authorRuss Cox <rsc@golang.org>
Tue, 3 Mar 2015 23:47:44 +0000 (18:47 -0500)
committerRuss Cox <rsc@golang.org>
Wed, 4 Mar 2015 16:35:49 +0000 (16:35 +0000)
commit3d0397a4f4f4034f4cb330ec7e5b05a359a86196
tree913b1608a3c9c3b982292021c49cb7dc4eaefd2a
parentb759e225f5c0ba1d672922e562cd52a131fd6d62
cmd/internal/obj/x86: change SHRQ to store second source in From3, not jammed into From

SHRQ CX, DX:AX is changing to SHRQ CX, AX, DX.
This is the first step: using SHRQ From=CX, From3=AX, To=DX
as the preferred encoding.
Once the assemblers and 6g have been updated,
support for the old encoding can be removed.

Change-Id: Ie603fb8ac25a6df78e42f7ddcae078a7684a7c26
Reviewed-on: https://go-review.googlesource.com/6693
Reviewed-by: Rob Pike <r@golang.org>
src/cmd/internal/obj/x86/asm6.go