diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-05-13 10:38:17 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-05-13 10:38:17 +0000 |
commit | 13b0c5ac1e687ea44f4c4e95a5a3fe43d605712d (patch) | |
tree | 1c85e7da161ca75b22f41a47ad7a0d96bddfff20 | |
parent | be9a0da55efc35bcdafbd53d1feb169358ca6748 (diff) | |
download | gcc-13b0c5ac1e687ea44f4c4e95a5a3fe43d605712d.zip gcc-13b0c5ac1e687ea44f4c4e95a5a3fe43d605712d.tar.gz gcc-13b0c5ac1e687ea44f4c4e95a5a3fe43d605712d.tar.bz2 |
rtl.h (rtx_def): Mark u2 as GTY ((skip)).
gcc/
* rtl.h (rtx_def): Mark u2 as GTY ((skip)).
From-SVN: r210357
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/rtl.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a6cb773..7ab57aa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-05-13 Richard Sandiford <rdsandiford@googlemail.com> + + * rtl.h (rtx_def): Mark u2 as GTY ((skip)). + 2014-05-13 Bin Cheng <bin.cheng@arm.com> * tree-ssa-loop-ivopts.c (contain_complex_addr_expr): New. @@ -354,8 +354,8 @@ struct GTY((chain_next ("RTX_NEXT (&%h)"), /* In a CONST_WIDE_INT (aka hwivec_def), this is the number of HOST_WIDE_INTs in the hwivec_def. */ - unsigned GTY ((tag ("CONST_WIDE_INT"))) num_elem:32; - } GTY ((desc ("GET_CODE (&%0)"))) u2; + unsigned int num_elem; + } GTY ((skip)) u2; /* The first element of the operands of this rtx. The number of operands and their types are controlled |