Remove two unused fields in the operand structure (o_read & o_write).

This commit is contained in:
Marcel Moolenaar 2003-10-24 02:05:53 +00:00
parent 1d0d7f3ee4
commit 3fc58f92dc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121448

View File

@ -185,8 +185,6 @@ enum asm_oper_type {
/* Operand */
struct asm_oper {
enum asm_oper_type o_type;
int o_read:1;
int o_write:1;
uint64_t o_value;
};