aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2010-07-26 22:51:29 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2010-07-26 20:51:29 +0000
commitb7956a5b865acff222b388288b34bfb48c83c550 (patch)
tree7ce258247cb17ad6a0869f3e5a631f53c596a851
parentb5f5d41d1a95994af84eececdb450685d0f1c436 (diff)
downloadgcc-b7956a5b865acff222b388288b34bfb48c83c550.zip
gcc-b7956a5b865acff222b388288b34bfb48c83c550.tar.gz
gcc-b7956a5b865acff222b388288b34bfb48c83c550.tar.bz2
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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/lto-streamer.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5eb1ae9..5ad59aa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-26 Jan Hubicka <jh@suse.cz>
+
+ * lto-streamer.h (struct lto_file_decl_data): Mark resolutions with
+ GTY((skip)).
+
2010-07-26 Anatoly Sokolov <aesok@post.ru>
* target.def (output_source_filename): New hook.
diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h
index 3304132..35a0a9b 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;