aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-02-09 06:13:46 +0000
committerRichard Stallman <rms@gnu.org>1993-02-09 06:13:46 +0000
commitb6542989bcdb2cb4d562950e5937eec091d47c53 (patch)
tree819248bc55f528c5cae9694e9d51ccfa6c56e748 /gcc/tree.c
parentf2dabd38de8d7ea3573b7e16aaa98131bb4e7886 (diff)
downloadgcc-b6542989bcdb2cb4d562950e5937eec091d47c53.zip
gcc-b6542989bcdb2cb4d562950e5937eec091d47c53.tar.gz
gcc-b6542989bcdb2cb4d562950e5937eec091d47c53.tar.bz2
(size_in_bytes): Add 2nd arg to force_fit_type.
From-SVN: r3443
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index af1e681..029b569 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -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;
}