+2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
+
+ * 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.
+
2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Variable>: Adjust
/* 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. */
sp_loc.Bounds = &temp_loc;
sp_loc.Array = loc;
- Current_Error_Node = error_gnat_node;
Compiler_Abort (sp, sp_loc, true);
}
/* Highest number in the front-end node table. */
int max_gnat_nodes;
-/* Current node being treated, in case abort called. */
-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. */
destroy_gnat_utils ();
/* We cannot track the location of errors past this point. */
- error_gnat_node = Empty;
+ Current_Error_Node = Empty;
}
\f
/* Return a subprogram decl corresponding to __gnat_rcheck_xx for the given
bool sync = false;
/* Save node number for error message and set location information. */
- error_gnat_node = gnat_node;
+ Current_Error_Node = gnat_node;
Sloc_to_locus (Sloc (gnat_node), &input_location);
/* If we are only annotating types and this node is a statement, return
rest_of_subprog_body_compilation (tree subprog_decl)
{
/* We cannot track the location of errors past this point. */
- error_gnat_node = Empty;
+ Current_Error_Node = Empty;
/* If we're only annotating types, don't actually compile this function. */
if (type_annotate_only)