allow (base,index) as alias to (base,index,1)

tcc-xref
bellard 2006-02-20 21:16:10 +00:00
parent 5487bc23c8
commit 6ca0299e5b
1 changed files with 4 additions and 2 deletions

View File

@ -320,8 +320,10 @@ static void parse_operand(TCCState *s1, Operand *op)
if (tok != ',') {
op->reg2 = asm_parse_reg();
}
skip(',');
op->shift = get_reg_shift(s1);
if (tok == ',') {
next();
op->shift = get_reg_shift(s1);
}
}
skip(')');
}