aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/typecheck/iexport.go
diff options
context:
space:
mode:
authorDavid Chase <drchase@google.com>2021-01-21 12:04:46 -0500
committerDavid Chase <drchase@google.com>2021-02-24 17:54:29 +0000
commit7a2f3273c5598bf53e37d0c8a4cb8a8caf7c4ca4 (patch)
treed95022f8c4850fd59e9cc4941089f46e9b6e046b /src/cmd/compile/internal/typecheck/iexport.go
parentadb467ffd2d82b796de12bdd8effa2cfefe01f29 (diff)
downloadgo-7a2f3273c5598bf53e37d0c8a4cb8a8caf7c4ca4.tar.gz
go-7a2f3273c5598bf53e37d0c8a4cb8a8caf7c4ca4.zip
cmd/compile: plumb abi info into ssagen/ssa
Plumb abi information into ssa/ssagen for plain calls and plain functions (not methods). Does not extend all the way through the compiler (yet). One test disabled because it extends far enough to break the test. Normalized all the compiler's register args TODOs to // TODO(register args) ... For #40724. Change-Id: I0173a4579f032ac3c9db3aef1749d40da5ea01ff Reviewed-on: https://go-review.googlesource.com/c/go/+/293389 Trust: David Chase <drchase@google.com> Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/cmd/compile/internal/typecheck/iexport.go')
-rw-r--r--src/cmd/compile/internal/typecheck/iexport.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/typecheck/iexport.go b/src/cmd/compile/internal/typecheck/iexport.go
index 6fab74e61f..38ac753201 100644
--- a/src/cmd/compile/internal/typecheck/iexport.go
+++ b/src/cmd/compile/internal/typecheck/iexport.go
@@ -1025,7 +1025,7 @@ func (w *exportWriter) funcExt(n *ir.Name) {
w.linkname(n.Sym())
w.symIdx(n.Sym())
- // TODO remove after register abi is working.
+ // TODO(register args) remove after register abi is working.
w.uint64(uint64(n.Func.Pragma))
// Escape analysis.