Fix problematic conversion to boolean type
authorEric Botcazou <ebotcazou@adacore.com>
Mon, 7 Dec 2020 09:17:20 +0000 (10:17 +0100)
committerEric Botcazou <ebotcazou@adacore.com>
Mon, 7 Dec 2020 09:18:15 +0000 (10:18 +0100)
The new ranger exposed a problematic conversion to boolean type.

gcc/ada/ChangeLog:
* gcc-interface/utils.c (convert) <INTEGER_TYPE>: Call fold_convert
in the cases where convert_to_integer is not called.
<BOOLEAN_TYPE>: Call fold_convert instead of convert_to_integer.

gcc/ada/gcc-interface/utils.c

index 013fccdd65793776e48df6fb48a5003c86c6b6cf..1d49db9fb1b56fc12eae74fa6ffde80253644df8 100644 (file)
@@ -4930,10 +4930,6 @@ convert (tree type, tree expr)
                                          convert (TREE_TYPE (type),
                                                   TYPE_MIN_VALUE (type))));
 
-      /* ... fall through ... */
-
-    case ENUMERAL_TYPE:
-    case BOOLEAN_TYPE:
       /* If we are converting an additive expression to an integer type
         with lower precision, be wary of the optimization that can be
         applied by convert_to_integer.  There are 2 problematic cases:
@@ -4945,8 +4941,7 @@ convert (tree type, tree expr)
             intermediate conversion that changes the sign could
             be inserted and thus introduce an artificial overflow
             at compile time when the placeholder is substituted.  */
-      if (code == INTEGER_TYPE
-         && ecode == INTEGER_TYPE
+      if (ecode == INTEGER_TYPE
          && TYPE_PRECISION (type) < TYPE_PRECISION (etype)
          && (TREE_CODE (expr) == PLUS_EXPR || TREE_CODE (expr) == MINUS_EXPR))
        {
@@ -4955,11 +4950,18 @@ convert (tree type, tree expr)
          if ((TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
               && TYPE_BIASED_REPRESENTATION_P (TREE_TYPE (op0)))
              || CONTAINS_PLACEHOLDER_P (expr))
-           return build1 (NOP_EXPR, type, expr);
+           return fold_convert (type, expr);
        }
 
+      /* ... fall through ... */
+
+    case ENUMERAL_TYPE:
       return fold (convert_to_integer (type, expr));
 
+    case BOOLEAN_TYPE:
+      /* Do not use convert_to_integer with boolean types.  */
+      return fold_convert_loc (EXPR_LOCATION (expr), type, expr);
+
     case POINTER_TYPE:
     case REFERENCE_TYPE:
       /* If converting between two thin pointers, adjust if needed to account