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 db1514c commit 76659e4Copy full SHA for 76659e4
src/cmd/link/internal/s390x/asm.go
@@ -69,6 +69,7 @@ func gentext(ctxt *ld.Link) {
69
initfunc.AddUint8(0xc0)
70
initfunc.AddUint8(0x20)
71
lmd := initfunc.AddRel()
72
+ lmd.InitExt()
73
lmd.Off = int32(initfunc.Size)
74
lmd.Siz = 4
75
lmd.Sym = ctxt.Moduledata
@@ -81,6 +82,7 @@ func gentext(ctxt *ld.Link) {
81
82
83
initfunc.AddUint8(0xf4)
84
rel := initfunc.AddRel()
85
+ rel.InitExt()
86
rel.Off = int32(initfunc.Size)
87
rel.Siz = 4
88
rel.Sym = ctxt.Syms.Lookup("runtime.addmoduledata", 0)
0 commit comments