diff options
Diffstat (limited to 'gcc/lto-streamer.c')
-rw-r--r-- | gcc/lto-streamer.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/lto-streamer.c b/gcc/lto-streamer.c index b34ab8b..92b313a 100644 --- a/gcc/lto-streamer.c +++ b/gcc/lto-streamer.c @@ -297,13 +297,12 @@ static hash_table<tree_hash_entry> *tree_htab; void lto_streamer_init (void) { -#ifdef ENABLE_CHECKING /* Check that all the TS_* handled by the reader and writer routines match exactly the structures defined in treestruct.def. When a new TS_* astructure is added, the streamer should be updated to handle it. */ - streamer_check_handled_ts_structures (); -#endif + if (flag_checking) + streamer_check_handled_ts_structures (); #ifdef LTO_STREAMER_DEBUG tree_htab = new hash_table<tree_hash_entry> (31); |