Commit 8384ac41 by Eric Botcazou

* gcc-interface/misc.c (gnat_init): Tweak previous change.

From-SVN: r175960
parent fbdd5d87
2011-07-07 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/misc.c (gnat_init): Tweak previous change.
2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR target/39150
......@@ -5,8 +9,8 @@
2011-07-06 Richard Guenther <rguenther@suse.de>
* gcc-interface/misc.c (gnat_init):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
* gcc-interface/misc.c (gnat_init): Merge calls to
build_common_tree_nodes and build_common_tree_nodes_2.
Re-initialize boolean_false_node.
2011-07-02 Eric Botcazou <ebotcazou@adacore.com>
......
......@@ -315,11 +315,11 @@ gnat_init (void)
SET_TYPE_RM_MAX_VALUE (boolean_type_node,
build_int_cst (boolean_type_node, 1));
SET_TYPE_RM_SIZE (boolean_type_node, bitsize_int (1));
boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
sbitsize_one_node = sbitsize_int (1);
sbitsize_unit_node = sbitsize_int (BITS_PER_UNIT);
boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
ptr_void_type_node = build_pointer_type (void_type_node);
......
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