diff options
author | Jan Hubicka <jh@suse.cz> | 2010-07-26 22:51:29 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2010-07-26 20:51:29 +0000 |
commit | b7956a5b865acff222b388288b34bfb48c83c550 (patch) | |
tree | 7ce258247cb17ad6a0869f3e5a631f53c596a851 /gcc/lto-streamer.h | |
parent | b5f5d41d1a95994af84eececdb450685d0f1c436 (diff) | |
download | gcc-b7956a5b865acff222b388288b34bfb48c83c550.tar.gz |
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
Diffstat (limited to 'gcc/lto-streamer.h')
-rw-r--r-- | gcc/lto-streamer.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |