diff options
| author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-27 16:48:31 +0000 |
|---|---|---|
| committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-27 16:48:31 +0000 |
| commit | 0f999733f8eb93c315f4a61664066a28bb9252a0 (patch) | |
| tree | 3e5dfead5d88ae6d7e7754314de8fdfb30ffd5af | |
| parent | 853902762057369d83358edc5ab20335fc8d8eed (diff) | |
| download | ppe42-gcc-0f999733f8eb93c315f4a61664066a28bb9252a0.tar.gz ppe42-gcc-0f999733f8eb93c315f4a61664066a28bb9252a0.zip | |
* stor-layout.c (sizetype_set): Remove.
(set_sizetype): Don't test or set it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86668 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/stor-layout.c | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e5e1511092..5afcde684d6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-08-27 Nathan Sidwell <nathan@codesourcery.com> + * stor-layout.c (sizetype_set): Remove. + (set_sizetype): Don't test or set it. + * tree.h (size_int_type): Remove. * fold-const.c: Do not #include gt-fold-const.h. (size_htab_hash, size_htab_eq): Remove. diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 3141e7d1af5..30eec879f53 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -37,9 +37,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #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]; @@ -1887,8 +1884,6 @@ set_sizetype (tree type) 2 * HOST_BITS_PER_WIDE_INT); tree t; - if (sizetype_set) - abort (); if (TYPE_UNSIGNED (type) != TYPE_UNSIGNED (sizetype)) abort (); |

