mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-24 14:09:53 +08:00
tree.c (build_range_type): Copy TYPE_SIZE_UNIT.
� * tree.c (build_range_type): Copy TYPE_SIZE_UNIT. From-SVN: r21455
This commit is contained in:
parent
f4494d3838
commit
28372f4188
@ -1,3 +1,7 @@
|
||||
Tue Jul 28 23:17:39 1998 Peter Gerwinski <peter@gerwinski.de>
|
||||
|
||||
* tree.c (build_range_type): Copy TYPE_SIZE_UNIT.
|
||||
|
||||
Tue Jul 28 22:31:12 1998 Craig Burley <burley@gnu.org>
|
||||
|
||||
* gcc.c: Fix commentary describing %g, %u, %U, and %O.
|
||||
|
@ -4167,6 +4167,7 @@ build_range_type (type, lowval, highval)
|
||||
TYPE_PRECISION (itype) = TYPE_PRECISION (type);
|
||||
TYPE_MODE (itype) = TYPE_MODE (type);
|
||||
TYPE_SIZE (itype) = TYPE_SIZE (type);
|
||||
TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
|
||||
TYPE_ALIGN (itype) = TYPE_ALIGN (type);
|
||||
if (TREE_CODE (lowval) == INTEGER_CST)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user