From: Richard Guenther Date: Mon, 20 Aug 2012 09:03:20 +0000 (+0000) Subject: gimple.h (gimple_statement_base): Annotate with GTY chain_next. X-Git-Tag: misc/gccgo-go1_1_2~1292 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d17fd79ca1fcad80aa66203b081aea61b758b814;p=thirdparty%2Fgcc.git gimple.h (gimple_statement_base): Annotate with GTY chain_next. 2012-08-20 Richard Guenther * gimple.h (gimple_statement_base): Annotate with GTY chain_next. From-SVN: r190525 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db0e94cf7c9d..4ecef1580486 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-08-20 Richard Guenther + + * gimple.h (gimple_statement_base): Annotate with GTY chain_next. + 2012-08-20 Richard Guenther PR bootstrap/54326 diff --git a/gcc/gimple.h b/gcc/gimple.h index 64ef68e57a14..827103d0eb37 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -151,7 +151,7 @@ typedef struct /* Data structure definitions for GIMPLE tuples. NOTE: word markers are for 64 bit hosts. */ -struct GTY(()) gimple_statement_base { +struct GTY((chain_next ("%h.next"))) gimple_statement_base { /* [ WORD 1 ] Main identifying code for a tuple. */ ENUM_BITFIELD(gimple_code) code : 8;