alias.c (base_alias_check): Cast GET_MODE_UNIT_SIZE to int to avoid warnings.
authorJan van Male <jan.vanmale@fenk.wau.nl>
Fri, 6 Jul 2001 21:30:44 +0000 (23:30 +0200)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 6 Jul 2001 21:30:44 +0000 (14:30 -0700)
        * alias.c (base_alias_check): Cast GET_MODE_UNIT_SIZE to int to
        avoid warnings.

From-SVN: r43823

gcc/ChangeLog
gcc/alias.c

index fc7155a39056be9dffb7458d9bd820050e580aee..f6d86660890f126ebe680befb807584e20a17530 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-06  Jan van Male  <jan.vanmale@fenk.wau.nl>
+
+       * alias.c (base_alias_check): Cast GET_MODE_UNIT_SIZE to int to
+       avoid warnings.
+
 2001-07-06  Richard Henderson  <rth@redhat.com>
 
        * bitmap.c (bitmap_release_memory): Move adjacent to the
index 83354257b75c076b9fc949a58af9c2ce78f95229..cacbf628e6ca1459672397bec1ef6aaea9957f6a 100644 (file)
@@ -1307,11 +1307,11 @@ base_alias_check (x, y, x_mode, y_mode)
        return 1;
       if (GET_CODE (x) == AND
          && (GET_CODE (XEXP (x, 1)) != CONST_INT
-             || GET_MODE_UNIT_SIZE (y_mode) < -INTVAL (XEXP (x, 1))))
+             || (int) GET_MODE_UNIT_SIZE (y_mode) < -INTVAL (XEXP (x, 1))))
        return 1;
       if (GET_CODE (y) == AND
          && (GET_CODE (XEXP (y, 1)) != CONST_INT
-             || GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
+             || (int) GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
        return 1;
       /* Differing symbols never alias.  */
       return 0;