Commit 23e0b03a by Tristan Gingold Committed by Arnaud Charlet

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
parent 9f2a75d3
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment