tree.c (fix_sizetype): Exchange the types for TYPE_SIZE and TYPE_SIZE_UNIT.

* tree.c (fix_sizetype):  Exchange the types for TYPE_SIZE and
	TYPE_SIZE_UNIT.

From-SVN: r29369
This commit is contained in:
Andreas Schwab 1999-09-13 07:41:20 +00:00 committed by Andreas Schwab
parent 4c3d3ad845
commit 4757f5c9c4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Mon Sep 13 09:38:53 1999 Andreas Schwab <schwab@suse.de>
* tree.c (fix_sizetype): Exchange the types for TYPE_SIZE and
TYPE_SIZE_UNIT.
Sun Sep 12 23:28:20 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (gcc.o, gccspec.o, cppspec.o): Depend on gcc.h.

View File

@ -5167,8 +5167,8 @@ static void
fix_sizetype (type)
tree type;
{
TREE_TYPE (TYPE_SIZE (type)) = sizetype;
TREE_TYPE (TYPE_SIZE_UNIT (type)) = bitsizetype;
TREE_TYPE (TYPE_SIZE (type)) = bitsizetype;
TREE_TYPE (TYPE_SIZE_UNIT (type)) = sizetype;
}
/* Call this function after calling build_common_tree_nodes and set_sizetype.