[commit: ghc] ghc-8.2: users-guide/debug-info: Fix incorrect DWARF tags (09f5582)
git at git.haskell.org
git at git.haskell.org
Mon Jun 26 22:25:42 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : ghc-8.2
Link : http://ghc.haskell.org/trac/ghc/changeset/09f558220d421330b9be63f529aa71980e745ba1/ghc
>---------------------------------------------------------------
commit 09f558220d421330b9be63f529aa71980e745ba1
Author: Ben Gamari <bgamari.foss at gmail.com>
Date: Mon Jun 26 16:27:34 2017 -0400
users-guide/debug-info: Fix incorrect DWARF tags
Reviewers: austin
Subscribers: rwbarton, thomie, niteria
Differential Revision: https://phabricator.haskell.org/D3675
(cherry picked from commit 86abe0e03f6cc2392758d6b45390177d44896113)
>---------------------------------------------------------------
09f558220d421330b9be63f529aa71980e745ba1
docs/users_guide/debug-info.rst | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/users_guide/debug-info.rst b/docs/users_guide/debug-info.rst
index 2f192f2..a0aade5 100644
--- a/docs/users_guide/debug-info.rst
+++ b/docs/users_guide/debug-info.rst
@@ -291,19 +291,19 @@ changes outside the span are guaranteed not to affect the code in the block.
Spans are described with the following attributes,
-``DW_AT_ghc_span_file`` (0x2b10, string)
+``DW_AT_ghc_span_file`` (0x2b00, string)
the name of the source file
-``DW_AT_ghc_span_start_line`` (0x2b11, integer)
+``DW_AT_ghc_span_start_line`` (0x2b01, integer)
the line number of the beginning of the span
-``DW_AT_ghc_span_start_col`` (0x2b11, integer)
+``DW_AT_ghc_span_start_col`` (0x2b02, integer)
the column number of the beginning of the span
-``DW_AT_ghc_span_end_line`` (0x2b11, integer)
+``DW_AT_ghc_span_end_line`` (0x2b03, integer)
the line number of the end of the span
-``DW_AT_ghc_span_end_col`` (0x2b11, integer)
+``DW_AT_ghc_span_end_col`` (0x2b04, integer)
the column number of the end of the span
More information about the ghc-commits
mailing list