(size_in_bytes): Add 2nd arg to force_fit_type.
authorRichard Stallman <rms@gnu.org>
Tue, 9 Feb 1993 06:13:46 +0000 (06:13 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 9 Feb 1993 06:13:46 +0000 (06:13 +0000)
From-SVN: r3443

gcc/tree.c

index af1e681d3622b204a283817eb9b074e8238ada15..029b56971e77104ff9991777a0f77433b813149c 100644 (file)
@@ -1705,7 +1705,7 @@ size_in_bytes (type)
   t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
                  size_int (BITS_PER_UNIT));
   if (TREE_CODE (t) == INTEGER_CST)
-    force_fit_type (t);
+    force_fit_type (t, 0);
   return t;
 }