We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 192b675 commit e881604Copy full SHA for e881604
src/cmd/internal/obj/x86/asm6.go
@@ -92,7 +92,7 @@ type Optab struct {
92
op opBytes
93
}
94
95
-type Movtab struct {
+type movtab struct {
96
as obj.As
97
ft uint8
98
f3t uint8
@@ -3619,7 +3619,7 @@ const (
3619
movTLSReg
3620
)
3621
3622
-var ymovtab = []Movtab{
+var ymovtab = []movtab{
3623
// push
3624
{APUSHL, Ycs, Ynone, Ynone, movLit, [4]uint8{0x0e, 0}},
3625
{APUSHL, Yss, Ynone, Ynone, movLit, [4]uint8{0x16, 0}},
@@ -3733,8 +3733,8 @@ var ymovtab = []Movtab{
3733
{AMOVW, Ytask, Ynone, Yml, movRegMem2op, [4]uint8{0x0f, 0x00, 1, 0}},
3734
3735
/* load full pointer - unsupported
3736
- Movtab{AMOVL, Yml, Ycol, movFullPtr, [4]uint8{0, 0, 0, 0}},
3737
- Movtab{AMOVW, Yml, Ycol, movFullPtr, [4]uint8{Pe, 0, 0, 0}},
+ {AMOVL, Yml, Ycol, movFullPtr, [4]uint8{0, 0, 0, 0}},
+ {AMOVW, Yml, Ycol, movFullPtr, [4]uint8{Pe, 0, 0, 0}},
3738
*/
3739
3740
// double shift
0 commit comments