mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: rename dxxx -> dxxxLSym
Follow-up to previous CL. gorename -from '"cmd/compile/internal/gc".duintxxLSym' -to duintxx gorename -from '"cmd/compile/internal/gc".duint8LSym' -to duint8 gorename -from '"cmd/compile/internal/gc".duint16LSym' -to duint16 gorename -from '"cmd/compile/internal/gc".duint32LSym' -to duint32 gorename -from '"cmd/compile/internal/gc".duintptrLSym' -to duintptr gorename -from '"cmd/compile/internal/gc".dbvecLSym' -to dbvec gorename -from '"cmd/compile/internal/gc".dsnameLSym' -to dsname gorename -from '"cmd/compile/internal/gc".dsymptrLSym' -to dsymptr gorename -from '"cmd/compile/internal/gc".dsymptrOffLSym' -to dsymptrOff gorename -from '"cmd/compile/internal/gc".dsymptrWeakOffLSym' -to dsymptrWeakOff Passes toolstash-check. Change-Id: I007f57340f9e8b1468553242556ae25a71167e8c Reviewed-on: https://go-review.googlesource.com/41397 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
4d600b8e5f
commit
a544df33fd
4 changed files with 116 additions and 116 deletions
|
|
@ -31,8 +31,8 @@ func emitptrargsmap() {
|
|||
if Curfn.Type.Results().NumFields() > 0 {
|
||||
nbitmap = 2
|
||||
}
|
||||
off := duint32LSym(lsym, 0, uint32(nbitmap))
|
||||
off = duint32LSym(lsym, off, uint32(bv.n))
|
||||
off := duint32(lsym, 0, uint32(nbitmap))
|
||||
off = duint32(lsym, off, uint32(bv.n))
|
||||
var xoffset int64
|
||||
if Curfn.IsMethod() {
|
||||
xoffset = 0
|
||||
|
|
@ -44,11 +44,11 @@ func emitptrargsmap() {
|
|||
onebitwalktype1(Curfn.Type.Params(), &xoffset, bv)
|
||||
}
|
||||
|
||||
off = dbvecLSym(lsym, off, bv)
|
||||
off = dbvec(lsym, off, bv)
|
||||
if Curfn.Type.Results().NumFields() > 0 {
|
||||
xoffset = 0
|
||||
onebitwalktype1(Curfn.Type.Results(), &xoffset, bv)
|
||||
off = dbvecLSym(lsym, off, bv)
|
||||
off = dbvec(lsym, off, bv)
|
||||
}
|
||||
|
||||
ggloblLSym(lsym, int32(off), obj.RODATA|obj.LOCAL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue