aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/cgo
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2023-07-31 21:40:45 +0800
committerGopher Robot <gobot@golang.org>2023-08-14 21:26:13 +0000
commit6d5ea923a2e3006c032d6b959e63f76d43ac2c74 (patch)
tree7579f7c2d9c6caf9fdbd01cb00571417e5790eec /src/cmd/cgo
parentd788b27cd4768fbbc82aef636a70b51a5d621181 (diff)
downloadgo-6d5ea923a2e3006c032d6b959e63f76d43ac2c74.tar.xz
cmd: fix mismatched symbols
Change-Id: I8852c0a29dffec9635d61b7670cfed78ebed07f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/514315 Run-TryBot: shuang cui <imcusg@gmail.com> Auto-Submit: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/cmd/cgo')
-rw-r--r--src/cmd/cgo/gcc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/cgo/gcc.go b/src/cmd/cgo/gcc.go
index 7ae6fbcc48..78a44d33a2 100644
--- a/src/cmd/cgo/gcc.go
+++ b/src/cmd/cgo/gcc.go
@@ -581,7 +581,7 @@ func (p *Package) loadDWARF(f *File, conv *typeConv, names []*Name) {
// As of https://reviews.llvm.org/D123534, clang
// now emits DW_TAG_variable DIEs that have
// no name (so as to be able to describe the
- // type and source locations of constant strings
+ // type and source locations of constant strings)
// like the second arg in the call below:
//
// myfunction(42, "foo")