summaryrefslogtreecommitdiff
path: root/assemble.c
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 /assemble.c
parent1598a23ba3377f575ae3b634848d8b50705346aa (diff)
downloadnasm-1f75420d6145ecfac615814715ae5830b9753430.tar.gz
use opflags_t type for operands
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'assemble.c')
-rw-r--r--assemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/assemble.c b/assemble.c
index 8f137931..e948ee36 100644
--- a/assemble.c
+++ b/assemble.c
@@ -2141,7 +2141,7 @@ static enum match_result matches(const struct itemplate *itemp,
* Check that the operand flags all match up
*/
for (i = 0; i < itemp->operands; i++) {
- int32_t type = instruction->oprs[i].type;
+ opflags_t type = instruction->oprs[i].type;
if (!(type & SIZE_MASK))
type |= size[i];