diff options
| author | Jeremy Faller <jeremy@golang.org> | 2019-07-30 17:48:11 -0400 |
|---|---|---|
| committer | Jeremy Faller <jeremy@golang.org> | 2019-09-23 19:40:07 +0000 |
| commit | 376fc48338bfd05192ebb87cdbca8c0d74d23b6a (patch) | |
| tree | d6be922ff146081c874de53a3fba0884d28a4523 /src/cmd/internal/objabi | |
| parent | f4ca3c1e0a2066ca4f7bd6203866d282ed34acf2 (diff) | |
| download | go-376fc48338bfd05192ebb87cdbca8c0d74d23b6a.tar.xz | |
cmd/compile: add new symbol for debug line numbers
This is broken out from: CL 187117
This new symbol will be populated by the compiler and contain debug line
information that's currently generated in the linker. One might say it's
sad to create a new symbol, but this symbol will replace the isStmt
symbols.
Testing: Ran go build -toolexec 'toolstash -cmp'
Change-Id: If8f7ae4b43b7247076605b6429b7d03a1fd239c5
Reviewed-on: https://go-review.googlesource.com/c/go/+/188238
Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/cmd/internal/objabi')
| -rw-r--r-- | src/cmd/internal/objabi/symkind.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/internal/objabi/symkind.go b/src/cmd/internal/objabi/symkind.go index 16b4c535ed..0e763e4496 100644 --- a/src/cmd/internal/objabi/symkind.go +++ b/src/cmd/internal/objabi/symkind.go @@ -60,6 +60,7 @@ const ( SDWARFRANGE SDWARFLOC SDWARFMISC + SDWARFLINES // ABI alias. An ABI alias symbol is an empty symbol with a // single relocation with 0 size that references the native // function implementation symbol. |
