mirror of git://gcc.gnu.org/git/gcc.git
trans.c: Synchronize declarations of other/all others between gigi and the runtime.
* gcc-interface/trans.c: Synchronize declarations of other/all others between gigi and the runtime. From-SVN: r203565
This commit is contained in:
parent
9f2a75d355
commit
23e0b03aa6
|
|
@ -5,6 +5,8 @@
|
|||
(set_exception_parameter_decl): New macro.
|
||||
* gcc-interface/trans.c (gigi): Initialize set_exception_parameter_decl.
|
||||
(Exception_Handler_to_gnu_zcx): Initialize the choice parameter.
|
||||
* gcc-interface/trans.c: Synchronize declarations of other/all others
|
||||
between gigi and the runtime.
|
||||
|
||||
2013-10-14 Robert Dewar <dewar@adacore.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -641,20 +641,20 @@ gigi (Node_Id gnat_root, int max_gnat_node, int number_name ATTRIBUTE_UNUSED,
|
|||
others_decl
|
||||
= create_var_decl (get_identifier ("OTHERS"),
|
||||
get_identifier ("__gnat_others_value"),
|
||||
integer_type_node, NULL_TREE, true, false, true, false,
|
||||
NULL, Empty);
|
||||
unsigned_char_type_node,
|
||||
NULL_TREE, true, false, true, false, NULL, Empty);
|
||||
|
||||
all_others_decl
|
||||
= create_var_decl (get_identifier ("ALL_OTHERS"),
|
||||
get_identifier ("__gnat_all_others_value"),
|
||||
integer_type_node, NULL_TREE, true, false, true, false,
|
||||
NULL, Empty);
|
||||
unsigned_char_type_node,
|
||||
NULL_TREE, true, false, true, false, NULL, Empty);
|
||||
|
||||
unhandled_others_decl
|
||||
= create_var_decl (get_identifier ("UNHANDLED_OTHERS"),
|
||||
get_identifier ("__gnat_unhandled_others_value"),
|
||||
integer_type_node, NULL_TREE, true, false, true, false,
|
||||
NULL, Empty);
|
||||
unsigned_char_type_node,
|
||||
NULL_TREE, true, false, true, false, NULL, Empty);
|
||||
|
||||
main_identifier_node = get_identifier ("main");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue