diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-18 23:18:45 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-18 23:18:45 -0400 |
commit | 919121bdf572b632cc5bfbbee502664682b26ab8 (patch) | |
tree | 528a83bb716851152ebc12aee385417b8f407601 /dimension/common.prologue | |
parent | 004d63c0c199a1544dc9b3af9cdd3367a6969d23 (diff) | |
download | dimension-919121bdf572b632cc5bfbbee502664682b26ab8.tar.xz |
Give backtraces for diagnostics from macros and include files.
Partly this means that dmnsn_diagnostic() can't be called anywhere except
during parsing, because the dmnsn_parse_location::parent pointers dangle.
Diffstat (limited to 'dimension/common.prologue')
-rw-r--r-- | dimension/common.prologue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dimension/common.prologue b/dimension/common.prologue index d82b110..4fdfcee 100644 --- a/dimension/common.prologue +++ b/dimension/common.prologue @@ -37,6 +37,7 @@ (Current).last_filename = YYRHSLOC(Rhs, N).last_filename; \ (Current).last_line = YYRHSLOC(Rhs, N).last_line; \ (Current).last_column = YYRHSLOC(Rhs, N).last_column; \ + (Current).parent = YYRHSLOC(Rhs, 1).parent; \ } else { \ (Current) = YYRHSLOC(Rhs, 0); \ } \ |