Commit bf6490b5 by Kai Tietz Committed by Kai Tietz

trans.c (Exception_Handler_to_gnu_sjlj): Use boolean_false_node instead of integer_zero_node.

2011-05-18  Kai Tietz <ktietz@redhat.com>

	* gcc-interface/trans.c (Exception_Handler_to_gnu_sjlj): Use
	boolean_false_node instead of integer_zero_node.
	(convert_with_check): Likewise.
	* gcc-interface/decl.c (choices_to_gnu): Likewise.

From-SVN: r173846
parent 26a8964c
2011-05-18 Kai Tietz <ktietz@redhat.com>
* gcc-interface/trans.c (Exception_Handler_to_gnu_sjlj): Use
boolean_false_node instead of integer_zero_node.
(convert_with_check): Likewise.
* gcc-interface/decl.c (choices_to_gnu): Likewise.
2011-05-12 Eric Botcazou <ebotcazou@adacore.com> 2011-05-12 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/trans.c (call_to_gnu): In the by-reference case, if the * gcc-interface/trans.c (call_to_gnu): In the by-reference case, if the
......
...@@ -6595,7 +6595,7 @@ choices_to_gnu (tree operand, Node_Id choices) ...@@ -6595,7 +6595,7 @@ choices_to_gnu (tree operand, Node_Id choices)
{ {
Node_Id choice; Node_Id choice;
Node_Id gnat_temp; Node_Id gnat_temp;
tree result = integer_zero_node; tree result = boolean_false_node;
tree this_test, low = 0, high = 0, single = 0; tree this_test, low = 0, high = 0, single = 0;
for (choice = First (choices); Present (choice); choice = Next (choice)) for (choice = First (choices); Present (choice); choice = Next (choice))
...@@ -6660,7 +6660,7 @@ choices_to_gnu (tree operand, Node_Id choices) ...@@ -6660,7 +6660,7 @@ choices_to_gnu (tree operand, Node_Id choices)
break; break;
case N_Others_Choice: case N_Others_Choice:
this_test = integer_one_node; this_test = boolean_true_node;
break; break;
default: default:
......
...@@ -3563,7 +3563,7 @@ Exception_Handler_to_gnu_sjlj (Node_Id gnat_node) ...@@ -3563,7 +3563,7 @@ Exception_Handler_to_gnu_sjlj (Node_Id gnat_node)
an "if" statement to select the proper exceptions. For "Others", exclude an "if" statement to select the proper exceptions. For "Others", exclude
exceptions where Handled_By_Others is nonzero unless the All_Others flag exceptions where Handled_By_Others is nonzero unless the All_Others flag
is set. For "Non-ada", accept an exception if "Lang" is 'V'. */ is set. For "Non-ada", accept an exception if "Lang" is 'V'. */
tree gnu_choice = integer_zero_node; tree gnu_choice = boolean_false_node;
tree gnu_body = build_stmt_group (Statements (gnat_node), false); tree gnu_body = build_stmt_group (Statements (gnat_node), false);
Node_Id gnat_temp; Node_Id gnat_temp;
...@@ -3575,7 +3575,7 @@ Exception_Handler_to_gnu_sjlj (Node_Id gnat_node) ...@@ -3575,7 +3575,7 @@ Exception_Handler_to_gnu_sjlj (Node_Id gnat_node)
if (Nkind (gnat_temp) == N_Others_Choice) if (Nkind (gnat_temp) == N_Others_Choice)
{ {
if (All_Others (gnat_temp)) if (All_Others (gnat_temp))
this_choice = integer_one_node; this_choice = boolean_true_node;
else else
this_choice this_choice
= build_binary_op = build_binary_op
...@@ -7101,7 +7101,7 @@ convert_with_check (Entity_Id gnat_type, tree gnu_expr, bool overflowp, ...@@ -7101,7 +7101,7 @@ convert_with_check (Entity_Id gnat_type, tree gnu_expr, bool overflowp,
{ {
/* Ensure GNU_EXPR only gets evaluated once. */ /* Ensure GNU_EXPR only gets evaluated once. */
tree gnu_input = gnat_protect_expr (gnu_result); tree gnu_input = gnat_protect_expr (gnu_result);
tree gnu_cond = integer_zero_node; tree gnu_cond = boolean_false_node;
tree gnu_in_lb = TYPE_MIN_VALUE (gnu_in_basetype); tree gnu_in_lb = TYPE_MIN_VALUE (gnu_in_basetype);
tree gnu_in_ub = TYPE_MAX_VALUE (gnu_in_basetype); tree gnu_in_ub = TYPE_MAX_VALUE (gnu_in_basetype);
tree gnu_out_lb = TYPE_MIN_VALUE (gnu_base_type); tree gnu_out_lb = TYPE_MIN_VALUE (gnu_base_type);
......
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