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

This commit is contained in:
bellard 2006-02-20 21:16:10 +00:00
parent 5487bc23c8
commit 6ca0299e5b

View file

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