diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2018-12-24 12:21:25 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2018-12-24 11:21:25 +0000 |
commit | 77e9f49535e298fb326cf0ebc208636d1dcf3f37 (patch) | |
tree | 49e6e270aae37f99742aded9def0bba2205a2e23 /gcc/tree.c | |
parent | d840d7a2bbbfd97d054baa7462ada09215d93974 (diff) | |
download | gcc-77e9f49535e298fb326cf0ebc208636d1dcf3f37.zip gcc-77e9f49535e298fb326cf0ebc208636d1dcf3f37.tar.gz gcc-77e9f49535e298fb326cf0ebc208636d1dcf3f37.tar.bz2 |
tree.c (fld_simplified_type): Temporarily disable array simplification.
* tree.c (fld_simplified_type): Temporarily disable array
simplification.
* gcc.c-torture/pr88140.c: New testcase.
From-SVN: r267398
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5372,7 +5372,8 @@ fld_simplified_type (tree t, struct free_lang_data_d *fld) return t; if (POINTER_TYPE_P (t)) return fld_incomplete_type_of (t, fld); - if (TREE_CODE (t) == ARRAY_TYPE) + /* FIXME: This triggers verification error, see PR88140. */ + if (TREE_CODE (t) == ARRAY_TYPE && 0) return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld), fld_simplified_types, fld); return t; |