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 /gcc/rtl.h | |
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
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |