diff options
author | brolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-03 12:41:14 +0000 |
---|---|---|
committer | brolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-03 12:41:14 +0000 |
commit | 02f79ba7d04fb48fbbb7f6f8e17d4f4e6e531c62 (patch) | |
tree | d7a64ddeadeca1857ae5ade799810e059f2459a4 /gcc/ch | |
parent | d463b3295a00efc05ac3b09904609f7429f8c474 (diff) | |
download | gcc-02f79ba7d04fb48fbbb7f6f8e17d4f4e6e531c62.tar.gz |
Chill testsuite problems...
Thu Sep 3 15:32:03 1998 Dave Brolley <brolley@cygnus.com>
* typeck.c (layout_chill_range_type): set TYPE_SIZE_UNIT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22207 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch')
-rw-r--r-- | gcc/ch/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ch/typeck.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index ff424696a4b..99b7e17f5d6 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 3 15:32:03 1998 Dave Brolley <brolley@cygnus.com> + + * typeck.c (layout_chill_range_type): set TYPE_SIZE_UNIT. + Wed Sep 02 09:25:29 1998 Nick Clifton <nickc@cygnus.com> * lex.c (check_newline): Change how HANDLE_PRAGMA is called. diff --git a/gcc/ch/typeck.c b/gcc/ch/typeck.c index 5f9749410e0..72cff6daa35 100644 --- a/gcc/ch/typeck.c +++ b/gcc/ch/typeck.c @@ -2692,6 +2692,7 @@ layout_chill_range_type (rangetype, must_be_const) TYPE_PRECISION (rangetype) = TYPE_PRECISION (type); TYPE_MODE (rangetype) = TYPE_MODE (type); TYPE_SIZE (rangetype) = TYPE_SIZE (type); + TYPE_SIZE_UNIT (rangetype) = TYPE_SIZE_UNIT (type); TYPE_ALIGN (rangetype) = TYPE_ALIGN (type); TREE_UNSIGNED (rangetype) = TREE_UNSIGNED (type); CH_NOVELTY (rangetype) = CH_NOVELTY (type); |