Commit 97f6baa0 by Laurent Guerby Committed by Geert Bosch

trans.c (gigi): Fix non determinism leading to bootstrap comparison failures for debugging...

	* trans.c (gigi): Fix non determinism leading to bootstrap
	comparison failures for debugging information.

From-SVN: r46567
parent 46b58b8c
2001-10-27 Laurent Guerby <guerby@acm.org>
* trans.c (gigi): Fix non determinism leading to bootstrap
comparison failures for debugging information.
2001-10-26 Florian Weimer <fw@deneb.enyo.de> 2001-10-26 Florian Weimer <fw@deneb.enyo.de>
* gnat_rm.texi: Use @./@: where appropriate. * gnat_rm.texi: Use @./@: where appropriate.
......
...@@ -155,6 +155,9 @@ gigi (gnat_root, max_gnat_node, number_name, ...@@ -155,6 +155,9 @@ gigi (gnat_root, max_gnat_node, number_name,
Int gigi_operating_mode; Int gigi_operating_mode;
{ {
tree gnu_standard_long_long_float;
tree gnu_standard_exception_type;
max_gnat_nodes = max_gnat_node; max_gnat_nodes = max_gnat_node;
number_names = number_name; number_names = number_name;
Nodes_Ptr = nodes_ptr - First_Node_Id; Nodes_Ptr = nodes_ptr - First_Node_Id;
...@@ -199,10 +202,12 @@ gigi (gnat_root, max_gnat_node, number_name, ...@@ -199,10 +202,12 @@ gigi (gnat_root, max_gnat_node, number_name,
dconstp5 = REAL_VALUE_ATOF ("0.5", DFmode); dconstp5 = REAL_VALUE_ATOF ("0.5", DFmode);
dconstmp5 = REAL_VALUE_ATOF ("-0.5", DFmode); dconstmp5 = REAL_VALUE_ATOF ("-0.5", DFmode);
init_gigi_decls (gnat_to_gnu_entity (Base_Type (standard_long_long_float), gnu_standard_long_long_float
NULL_TREE, 0), = gnat_to_gnu_entity (Base_Type (standard_long_long_float), NULL_TREE, 0);
gnat_to_gnu_entity (Base_Type (standard_exception_type), gnu_standard_exception_type
NULL_TREE, 0)); = gnat_to_gnu_entity (Base_Type (standard_exception_type), NULL_TREE, 0);
init_gigi_decls (gnu_standard_long_long_float, gnu_standard_exception_type);
/* Emit global symbols containing context list info for the SGI Workshop /* Emit global symbols containing context list info for the SGI Workshop
debugger */ debugger */
......
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