diff options
author | Richard Guenther <rguenther@suse.de> | 2010-07-23 14:01:49 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-07-23 14:01:49 +0000 |
commit | c4fcd06a10ddacc81f535b165034dbaa93b6005c (patch) | |
tree | 6385e1fabde05644320c6c7f11ab4bd95f2dc27a /gcc/lto-streamer-in.c | |
parent | 6afb52d3e2c1ea3376e3037d1c6e6a69ff7ac6fd (diff) | |
download | gcc-c4fcd06a10ddacc81f535b165034dbaa93b6005c.zip gcc-c4fcd06a10ddacc81f535b165034dbaa93b6005c.tar.gz gcc-c4fcd06a10ddacc81f535b165034dbaa93b6005c.tar.bz2 |
lto-symtab.c (lto_symtab_merge): Use gtc_mode enum values.
2010-07-23 Richard Guenther <rguenther@suse.de>
* lto-symtab.c (lto_symtab_merge): Use gtc_mode enum
values.
(lto_symtab_merge_decls_2): Likewise.
* tree-ssa.c (useless_type_conversion_p): Likewise.
* lto-streamer-in.c (input_gimple_stmt): Likewise.
* gimple.c (gtc_visited2, gtc_ob2): Remove.
(struct type_pair_d): Make same_p an array indexed by mode.
Update comment.
(lookup_type_pair): Update initialization.
(struct sccs): Adjust same_p type.
(gimple_types_compatible_p_1, gtc_visit, gimple_types_compatible_p):
Adjust.
(print_gimple_types_stats): Likewise.
* gimple.h (enum gtc_mode): New.
(gimple_types_compatible_p): Adjust prototype.
From-SVN: r162461
Diffstat (limited to 'gcc/lto-streamer-in.c')
-rw-r--r-- | gcc/lto-streamer-in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c index 9d3e7ec..3451b84 100644 --- a/gcc/lto-streamer-in.c +++ b/gcc/lto-streamer-in.c @@ -962,7 +962,7 @@ input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in, if (tem == field || (gimple_types_compatible_p (TREE_TYPE (tem), TREE_TYPE (field), - false) + GTC_DIAG) && DECL_NONADDRESSABLE_P (tem) == DECL_NONADDRESSABLE_P (field) && gimple_compare_field_offset (tem, field))) |