Commit 4d7d0403 by Richard Stallman

(size_in_bytes): Only call force_fit_type for an INTEGER_CST.

From-SVN: r3386
parent f2fbfe92
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment