(size_in_bytes): Only call force_fit_type for an INTEGER_CST.

From-SVN: r3386
This commit is contained in:
Richard Stallman 1993-01-30 01:56:57 +00:00
parent f2fbfe928c
commit 4d7d0403c6
1 changed files with 2 additions and 1 deletions

View File

@ -1704,7 +1704,8 @@ size_in_bytes (type)
}
t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
size_int (BITS_PER_UNIT));
force_fit_type (t);
if (TREE_CODE (t) == INTEGER_CST)
force_fit_type (t);
return t;
}