aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-08-20 09:03:20 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2012-08-20 09:03:20 +0000
commitd17fd79ca1fcad80aa66203b081aea61b758b814 (patch)
treea5b855e3e154d72a492bc7f5ffe6f23edc995e8c /gcc
parente7eec276ffe40c4e0f0ef64720240b59543b6a5b (diff)
downloadgcc-d17fd79ca1fcad80aa66203b081aea61b758b814.zip
gcc-d17fd79ca1fcad80aa66203b081aea61b758b814.tar.gz
gcc-d17fd79ca1fcad80aa66203b081aea61b758b814.tar.bz2
gimple.h (gimple_statement_base): Annotate with GTY chain_next.
2012-08-20 Richard Guenther <rguenther@suse.de> * gimple.h (gimple_statement_base): Annotate with GTY chain_next. From-SVN: r190525
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/gimple.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index db0e94c..4ecef15 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2012-08-20 Richard Guenther <rguenther@suse.de>
+ * gimple.h (gimple_statement_base): Annotate with GTY chain_next.
+
+2012-08-20 Richard Guenther <rguenther@suse.de>
+
PR bootstrap/54326
* genoutput.c (note_constraint): Properly use CONST_CAST.
diff --git a/gcc/gimple.h b/gcc/gimple.h
index 64ef68e..827103d 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;