utils2.c (build_binary_op): Tweak formatting.
authorEric Botcazou <ebotcazou@adacore.com>
Sat, 24 Oct 2015 09:06:26 +0000 (09:06 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 24 Oct 2015 09:06:26 +0000 (09:06 +0000)
* gcc-interface/utils2.c (build_binary_op): Tweak formatting.
(build_unary_op): Likewise.

From-SVN: r229284

gcc/ada/ChangeLog
gcc/ada/gcc-interface/utils2.c

index d94db513a2e816f4564ad70a5da66442a5724ff9..bc01e68f48bcd304dec44793b40fd80c60a5778f 100644 (file)
@@ -1,3 +1,8 @@
+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.
index ce1a2f2dcb34a6c9404dbeda26ae311d488dcd14..47446ba89699ff43a1631fd8ea00bf71085d8f86 100644 (file)
@@ -1038,8 +1038,8 @@ build_binary_op (enum tree_code op_code, tree result_type,
     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);
@@ -1051,8 +1051,8 @@ build_binary_op (enum tree_code op_code, tree result_type,
     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,
@@ -1332,8 +1332,8 @@ build_unary_op (enum tree_code op_code, tree result_type, tree operand)
       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