From: Jan Hubicka Date: Mon, 26 Jul 2010 20:51:29 +0000 (+0200) Subject: lto-streamer.h (struct lto_file_decl_data): Mark resolutions with GTY((skip)). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b7956a5b865acff222b388288b34bfb48c83c550;p=gcc.git lto-streamer.h (struct lto_file_decl_data): Mark resolutions with GTY((skip)). * lto-streamer.h (struct lto_file_decl_data): Mark resolutions with GTY((skip)). From-SVN: r162544 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5eb1ae9e604..5ad59aaa828 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-07-26 Jan Hubicka + + * lto-streamer.h (struct lto_file_decl_data): Mark resolutions with + GTY((skip)). + 2010-07-26 Anatoly Sokolov * target.def (output_source_filename): New hook. diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index 3304132b1d0..35a0a9b1a00 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -608,7 +608,7 @@ struct GTY(()) lto_file_decl_data unsigned id; /* Symbol resolutions for this file */ - VEC(ld_plugin_symbol_resolution_t,heap) *resolutions; + VEC(ld_plugin_symbol_resolution_t,heap) * GTY((skip)) resolutions; }; typedef struct lto_file_decl_data *lto_file_decl_data_ptr;