diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-08 20:02:43 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-08 20:02:43 +0000 |
commit | 7ca4e853ae1e881881bcce36edf100a37dba4691 (patch) | |
tree | 9a4bc57a7bf4665215a2c59e8fd81404632614f4 | |
parent | a974aa3e442eed4ff62ce7796e268d9648e88482 (diff) | |
download | gcc-7ca4e853ae1e881881bcce36edf100a37dba4691.tar.gz |
* trans-types.c (gfc_init_types): Ensure gfc_integer_types doesn't
contain TYPE_STRING_FLAG types.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145771 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/trans-types.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 890a099afa2..c0f12e61738 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2009-04-08 Jakub Jelinek <jakub@redhat.com> + + * trans-types.c (gfc_init_types): Ensure gfc_integer_types doesn't + contain TYPE_STRING_FLAG types. + 2009-04-08 Janne Blomqvist <jb@gcc.gnu.org> PR fortran/39670 diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c index 717859c5360..7cb33634604 100644 --- a/gcc/fortran/trans-types.c +++ b/gcc/fortran/trans-types.c @@ -721,6 +721,9 @@ gfc_init_types (void) for (index = 0; gfc_integer_kinds[index].kind != 0; ++index) { type = gfc_build_int_type (&gfc_integer_kinds[index]); + /* Ensure integer(kind=1) doesn't have TYPE_STRING_FLAG set. */ + if (TYPE_STRING_FLAG (type)) + type = make_signed_type (gfc_integer_kinds[index].bit_size); gfc_integer_types[index] = type; snprintf (name_buf, sizeof(name_buf), "integer(kind=%d)", gfc_integer_kinds[index].kind); |