summaryrefslogtreecommitdiff
path: root/gcc/recog.h
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-13 04:22:58 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-13 04:22:58 +0000
commitfc68ceab54a29060364852532ed3b0b7b0818637 (patch)
tree87f605424d545fb910087a416fcc3c64896fe96b /gcc/recog.h
parent458e9fd00c029706b40b42ed9b33f1d2785282d2 (diff)
downloadgcc-fc68ceab54a29060364852532ed3b0b7b0818637.tar.gz
* recog.h (struct insn_operand_data): Shrink 'mode' field
to 16 bits. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44839 138bc75d-0d04-0410-961f-82ee72b054a4
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 e15a423d4dd..6b4c90a093c 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;