c-common.c (build_common_tree_nodes): Build intTI_type_nodes for HOST_BITS_PER_WIDE_INT == 32 too.

* c-common.c (build_common_tree_nodes): Build intTI_type_nodes
	for HOST_BITS_PER_WIDE_INT == 32 too.

From-SVN: r40121
This commit is contained in:
Jan Hubicka 2001-02-28 17:25:05 +01:00 committed by Jan Hubicka
parent 787dc84216
commit 4ae3100368
2 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 28 17:24:24 CET 2001 Jan Hubicka <jh@suse.cz>
* c-common.c (build_common_tree_nodes): Build intTI_type_nodes
for HOST_BITS_PER_WIDE_INT == 32 too.
Wed Feb 28 17:22:35 CET 2001 Jan Hubicka <jh@suse.cz>
* caller-save.c (reg_save_code, reg_restore_code): Index by mode, not

View file

@ -4751,17 +4751,13 @@ build_common_tree_nodes (signed_char)
intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
#if HOST_BITS_PER_WIDE_INT >= 64
intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
#endif
unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
#if HOST_BITS_PER_WIDE_INT >= 64
unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
#endif
}
/* Call this function after calling build_common_tree_nodes and set_sizetype.