mirror of git://gcc.gnu.org/git/gcc.git
cp-tree.h (struct tinst_level): Add chain_next GTY markup.
* cp-tree.h (struct tinst_level): Add chain_next GTY markup. From-SVN: r174816
This commit is contained in:
parent
49931fcb6e
commit
a608debe1c
|
@ -1,3 +1,8 @@
|
||||||
|
2011-06-08 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* cp-tree.h (struct tinst_level): Add chain_next GTY
|
||||||
|
markup.
|
||||||
|
|
||||||
2011-06-08 Jason Merrill <jason@redhat.com>
|
2011-06-08 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
PR c++/49322
|
PR c++/49322
|
||||||
|
|
|
@ -4635,7 +4635,7 @@ struct cp_declarator {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* A level of template instantiation. */
|
/* A level of template instantiation. */
|
||||||
struct GTY(()) tinst_level {
|
struct GTY((chain_next ("%h.next"))) tinst_level {
|
||||||
/* The immediately deeper level in the chain. */
|
/* The immediately deeper level in the chain. */
|
||||||
struct tinst_level *next;
|
struct tinst_level *next;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue