diff options
author | Richard Henderson <rth@redhat.com> | 2003-12-02 02:14:40 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-12-02 02:14:40 -0800 |
commit | 7e7c843fc72dc9f503ca052f2366d5a10eabc45c (patch) | |
tree | 435cdb343860221e1462222011307b8ded1f891a /gcc/recog.h | |
parent | df2b750fc14c757455d3ea296121ffe797edb217 (diff) | |
download | gcc-7e7c843fc72dc9f503ca052f2366d5a10eabc45c.zip gcc-7e7c843fc72dc9f503ca052f2366d5a10eabc45c.tar.gz gcc-7e7c843fc72dc9f503ca052f2366d5a10eabc45c.tar.bz2 |
rtl.h (PUT_CODE, PUT_MODE): Remove ENUM_BITFIELD cast.
* rtl.h (PUT_CODE, PUT_MODE): Remove ENUM_BITFIELD cast.
* tree.h (TREE_SET_CODE): Likewise.
* recog.h (struct insn_operand_data): Move const after ENUM_BITFIELD.
From-SVN: r74170
Diffstat (limited to 'gcc/recog.h')
-rw-r--r-- | gcc/recog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/recog.h b/gcc/recog.h index b4f4743..749c64b 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -221,7 +221,7 @@ struct insn_operand_data const char *const constraint; - const ENUM_BITFIELD(machine_mode) mode : 16; + ENUM_BITFIELD(machine_mode) const mode : 16; const char strict_low; |