diff options
| author | Dhiru Kholia <dhiru.kholia@gmail.com> | 2014-03-11 18:49:50 -0700 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2014-03-11 18:49:50 -0700 |
| commit | 5b5c8f0576e15db9bc5aa1e63507cef3aa370478 (patch) | |
| tree | ab61d7c41f0aab31b7be42f9916bb79a916dcbae /src/pkg/debug/dwarf/const.go | |
| parent | ae9b661fa859222b9bcbcafc1a63f3f305385e75 (diff) | |
| download | go-5b5c8f0576e15db9bc5aa1e63507cef3aa370478.tar.xz | |
dwarf: add extensions for multi-file compression (.dwz)
LGTM=iant
R=golang-codereviews, iant, bradfitz
CC=golang-codereviews, math-nuts
https://golang.org/cl/72820044
Diffstat (limited to 'src/pkg/debug/dwarf/const.go')
| -rw-r--r-- | src/pkg/debug/dwarf/const.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/debug/dwarf/const.go b/src/pkg/debug/dwarf/const.go index 987812b152..93c68881af 100644 --- a/src/pkg/debug/dwarf/const.go +++ b/src/pkg/debug/dwarf/const.go @@ -212,6 +212,10 @@ const ( formExprloc format = 0x18 formFlagPresent format = 0x19 formRefSig8 format = 0x20 + // Extensions for multi-file compression (.dwz) + // http://www.dwarfstd.org/ShowIssue.php?issue=120604.1 + formGnuRefAlt format = 0x1f20 + formGnuStrpAlt format = 0x1f21 ) // A Tag is the classification (the type) of an Entry. |
