+2015-10-24 Eric Botcazou <ebotcazou@adacore.com>
+
+ * gcc-interface/utils2.c (build_binary_op): Tweak formatting.
+ (build_unary_op): Likewise.
+
2015-10-23 Arnaud Charlet <charlet@adacore.com>
* gnat_rm.texi, gnat_ugn.texi: Regenerate.
case TRUTH_AND_EXPR:
case TRUTH_OR_EXPR:
case TRUTH_XOR_EXPR:
- gcc_checking_assert (TREE_CODE (
- get_base_type (result_type)) == BOOLEAN_TYPE);
+ gcc_checking_assert
+ (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
operation_type = left_base_type;
left_operand = convert (operation_type, left_operand);
right_operand = convert (operation_type, right_operand);
case LT_EXPR:
case EQ_EXPR:
case NE_EXPR:
- gcc_checking_assert (TREE_CODE (
- get_base_type (result_type)) == BOOLEAN_TYPE);
+ gcc_checking_assert
+ (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
/* If either operand is a NULL_EXPR, just return a new one. */
if (TREE_CODE (left_operand) == NULL_EXPR)
return build2 (op_code, result_type,
break;
case TRUTH_NOT_EXPR:
- gcc_checking_assert (TREE_CODE (
- get_base_type (result_type)) == BOOLEAN_TYPE);
+ gcc_checking_assert
+ (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
result = invert_truthvalue_loc (EXPR_LOCATION (operand), operand);
/* When not optimizing, fold the result as invert_truthvalue_loc
doesn't fold the result of comparisons. This is intended to undo