(layout_type): Use ptr_mode instead of equivalent call to

mode_for_size.

From-SVN: r8549
This commit is contained in:
Richard Kenner 1994-11-22 06:29:12 -05:00
parent 15c9248c38
commit 9fe0563aff
1 changed files with 2 additions and 4 deletions

View File

@ -706,8 +706,7 @@ layout_type (type)
case OFFSET_TYPE:
TYPE_SIZE (type) = size_int (POINTER_SIZE);
TYPE_MODE (type) = mode_for_size (POINTER_SIZE,
GET_MODE_CLASS (Pmode), 0);
TYPE_MODE (type) = ptr_mode;
break;
case FUNCTION_TYPE:
@ -718,8 +717,7 @@ layout_type (type)
case POINTER_TYPE:
case REFERENCE_TYPE:
TYPE_MODE (type) = mode_for_size (POINTER_SIZE,
GET_MODE_CLASS (Pmode), 0);
TYPE_MODE (type) = ptr_mode;
TYPE_SIZE (type) = size_int (POINTER_SIZE);
TREE_UNSIGNED (type) = 1;
TYPE_PRECISION (type) = POINTER_SIZE;