diff options
author | marcel <marcel@FreeBSD.org> | 2003-10-24 02:05:53 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-10-24 02:05:53 +0000 |
commit | 911fff3816d94c494e8c8b63cce5b3f079497fff (patch) | |
tree | 9001c60ff34d630af5405e3b901902340e30c517 /sys/ia64/disasm/disasm.h | |
parent | fffd429f130bdf80ca2848cffd6181a42663611c (diff) | |
download | FreeBSD-src-911fff3816d94c494e8c8b63cce5b3f079497fff.zip FreeBSD-src-911fff3816d94c494e8c8b63cce5b3f079497fff.tar.gz |
Remove two unused fields in the operand structure (o_read & o_write).
Diffstat (limited to 'sys/ia64/disasm/disasm.h')
-rw-r--r-- | sys/ia64/disasm/disasm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/ia64/disasm/disasm.h b/sys/ia64/disasm/disasm.h index 0037bd3..bdd4bf6 100644 --- a/sys/ia64/disasm/disasm.h +++ b/sys/ia64/disasm/disasm.h @@ -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; }; |