summaryrefslogtreecommitdiff
path: root/nasm.h
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2009-10-11 13:40:44 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2009-10-13 19:41:41 +0400
commit1f75420d6145ecfac615814715ae5830b9753430 (patch)
treee03b270b85c1db8e3a837ccc95ac743806eebe17 /nasm.h
parent1598a23ba3377f575ae3b634848d8b50705346aa (diff)
downloadnasm-1f75420d6145ecfac615814715ae5830b9753430.tar.gz
nasm-1f75420d6145ecfac615814715ae5830b9753430.tar.bz2
nasm-1f75420d6145ecfac615814715ae5830b9753430.zip
use opflags_t type for operands
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.h')
-rw-r--r--nasm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasm.h b/nasm.h
index 9e233fc..00cbddc 100644
--- a/nasm.h
+++ b/nasm.h
@@ -682,7 +682,7 @@ enum eval_hint { /* values for `hinttype' */
};
typedef struct operand { /* operand to an instruction */
- int32_t type; /* type of operand */
+ opflags_t type; /* type of operand */
int disp_size; /* 0 means default; 16; 32; 64 */
enum reg_enum basereg, indexreg; /* address registers */
int scale; /* index scale */