]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/config/frv/frv.c
flags.h (g_switch_value): Change to an unsigned HOST_WIDE_INT.
[gcc.git] / gcc / config / frv / frv.c
index 822c19a0693160f2d22c1d94cbb06640417669ea..c2a8ef95c6cdc5e5c9b8d2e9f6507a7e8a325d66 100644 (file)
@@ -9714,7 +9714,7 @@ frv_in_small_data_p (decl)
     return false;
 
   size = int_size_in_bytes (TREE_TYPE (decl));
-  if (size > 0 && size <= g_switch_value)
+  if (size > 0 && (unsigned HOST_WIDE_INT) size <= g_switch_value)
     return true;
 
   /* If we already know which section the decl should be in, see if
This page took 0.033019 seconds and 5 git commands to generate.