From: Ian Lance Taylor Date: Fri, 31 Jan 2020 00:38:15 +0000 (-0800) Subject: doc/go1.14: mention changes to debug/dwarf X-Git-Tag: go1.14rc1~11 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c8a91ed24932be7248eefed58ade4bb978b62f55;p=gostls13.git doc/go1.14: mention changes to debug/dwarf Updates #36878 Change-Id: Icfbf9074c731d64198b4760e1902bbd09fcc1349 Reviewed-on: https://go-review.googlesource.com/c/go/+/217067 Reviewed-by: Austin Clements --- diff --git a/doc/go1.14.html b/doc/go1.14.html index 2f0e67ab68..2f73f0fdf7 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -512,6 +512,37 @@ TODO +
debug/dwarf
+
+

+ The debug/dwarf package now supports reading DWARF + version 5. +

+

+ The new + method (*Data).AddSection + supports adding arbitrary new DWARF sections from the input file + to the DWARF Data. +

+ +

+ The new + method (*Reader).ByteOrder + returns the byte order of the current compilation unit. + This may be used to interpret attributes that are encoded in the + native ordering, such as location descriptions. +

+ +

+ The new + method (*LineReader).Files + returns the file name table from a line reader. + This may be used to interpret the value of DWARF attributes such + as AttrDeclFile. +

+
+
+
encoding/asn1