aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.h
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2001-08-13 04:22:58 +0000
committerZack Weinberg <zack@gcc.gnu.org>2001-08-13 04:22:58 +0000
commita2b498cb8aca81a3a07e5d861340a36956d9c60f (patch)
tree87f605424d545fb910087a416fcc3c64896fe96b /gcc/recog.h
parentccea0d8509461d1ad235ead765c40cf7e93b4887 (diff)
downloadgcc-a2b498cb8aca81a3a07e5d861340a36956d9c60f.zip
gcc-a2b498cb8aca81a3a07e5d861340a36956d9c60f.tar.gz
gcc-a2b498cb8aca81a3a07e5d861340a36956d9c60f.tar.bz2
recog.h (struct insn_operand_data): Shrink 'mode' field to 16 bits.
* recog.h (struct insn_operand_data): Shrink 'mode' field to 16 bits. From-SVN: r44839
Diffstat (limited to 'gcc/recog.h')
-rw-r--r--gcc/recog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/recog.h b/gcc/recog.h
index e15a423..6b4c90a 100644
--- a/gcc/recog.h
+++ b/gcc/recog.h
@@ -219,7 +219,7 @@ struct insn_operand_data
const char *constraint;
- enum machine_mode mode;
+ ENUM_BITFIELD(machine_mode) mode : 16;
char strict_low;