diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2018-09-26 09:16:54 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2018-09-26 09:16:54 +0000 |
commit | 738b83cd32bc4ebf651ef517cd880f04500d07af (patch) | |
tree | 2a5a822894fcb5b28e5cbe09f5dced2ca199f022 /gcc/ada/gcc-interface/gigi.h | |
parent | 3b9d159401751981118415b472dd0bdb68e862f6 (diff) | |
download | gcc-738b83cd32bc4ebf651ef517cd880f04500d07af.zip gcc-738b83cd32bc4ebf651ef517cd880f04500d07af.tar.gz gcc-738b83cd32bc4ebf651ef517cd880f04500d07af.tar.bz2 |
[Ada] Set Current_Error_Node directly
This changes gigi to set Current_Error_Node directly, which should
result in a more robust error handling.
2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
gcc/ada/
* gcc-interface/gigi.h (error_gnat_node): Delete.
* gcc-interface/trans.c (error_gnat_node): Likewise.
(gigi): Replace it with Current_Error_Node.
(gnat_to_gnu): Likewise.
* gcc-interface/utils.c (rest_of_subprog_body_compilation):
Likewise.
* gcc-interface/misc.c (internal_error_function): Do not set it.
From-SVN: r264607
Diffstat (limited to 'gcc/ada/gcc-interface/gigi.h')
-rw-r--r-- | gcc/ada/gcc-interface/gigi.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/ada/gcc-interface/gigi.h b/gcc/ada/gcc-interface/gigi.h index eb64a8b..3029732 100644 --- a/gcc/ada/gcc-interface/gigi.h +++ b/gcc/ada/gcc-interface/gigi.h @@ -214,9 +214,6 @@ extern void destroy_gnat_decl (void); /* Highest number in the front-end node table. */ extern int max_gnat_nodes; -/* Current node being treated, in case abort called. */ -extern Node_Id error_gnat_node; - /* True when gigi is being called on an analyzed but unexpanded tree, and the only purpose of the call is to properly annotate types with representation information. */ |