diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-02-09 06:13:46 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-02-09 06:13:46 +0000 |
commit | 8e1de571a1082c7dc39cf9b519db05b6f5c40b94 (patch) | |
tree | 819248bc55f528c5cae9694e9d51ccfa6c56e748 /gcc/tree.c | |
parent | 5344935f92cde2ea2d58f5f1bc7c585033e15c53 (diff) | |
download | gcc-8e1de571a1082c7dc39cf9b519db05b6f5c40b94.tar.gz |
(size_in_bytes): Add 2nd arg to force_fit_type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3443 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index af1e681d362..029b56971e7 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; } |