2004-08-27 Nathan Sidwell * stor-layout.c (sizetype_set): Remove. (set_sizetype): Don't test or set it. Index: stor-layout.c =================================================================== RCS file: /cvs/gcc/gcc/gcc/stor-layout.c,v retrieving revision 1.207 diff -c -3 -p -r1.207 stor-layout.c *** stor-layout.c 25 Aug 2004 09:51:28 -0000 1.207 --- stor-layout.c 27 Aug 2004 16:31:32 -0000 *************** Software Foundation, 59 Temple Place - S *** 37,45 **** #include "regs.h" #include "params.h" - /* Set to one when set_sizetype has been called. */ - static int sizetype_set; - /* Data type for the expressions representing sizes of data types. It is the first integer type laid out. */ tree sizetype_tab[(int) TYPE_KIND_LAST]; --- 37,42 ---- *************** set_sizetype (tree type) *** 1887,1894 **** 2 * HOST_BITS_PER_WIDE_INT); tree t; - if (sizetype_set) - abort (); if (TYPE_UNSIGNED (type) != TYPE_UNSIGNED (sizetype)) abort (); --- 1884,1889 ----