* gcc-interface/gigi.h (get_elaboration_procedure): Delete.
* gcc-interface/trans.c (get_elaboration_procedure): Make static.
From-SVN: r248055
+2017-05-15 Eric Botcazou <ebotcazou@adacore.com>
+
+ * gcc-interface/gigi.h (get_elaboration_procedure): Delete.
+ * gcc-interface/trans.c (get_elaboration_procedure): Make static.
+
2017-05-15 Pierre-Marie de Rodat <derodat@adacore.com>
* gcc-interface/utils.c (can_materialize_object_renaming_p):
* *
* C Header File *
* *
- * Copyright (C) 1992-2016, Free Software Foundation, Inc. *
+ * Copyright (C) 1992-2017, Free Software Foundation, Inc. *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
if none. */
extern tree get_exception_label (char kind);
-/* Return the decl for the current elaboration procedure. */
-extern tree get_elaboration_procedure (void);
-
/* If nonzero, pretend we are allocating at global level. */
extern int force_global;
static enum tree_code gnu_codes[Number_Node_Kinds];
static void init_code_table (void);
+static tree get_elaboration_procedure (void);
static void Compilation_Unit_to_gnu (Node_Id);
static bool empty_stmt_list_p (tree);
static void record_code_position (Node_Id);
/* Return the decl for the current elaboration procedure. */
-tree
+static tree
get_elaboration_procedure (void)
{
return gnu_elab_proc_stack->last ();