fix for previous commit: do not complain about () inside []

git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@154 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2020-05-11 12:42:47 +00:00
parent 4c938480fc
commit 20e04e22bc

View File

@ -551,7 +551,7 @@ static int get_addr_mode(struct number *result)
break;
case '[':
GetByte(); // proceed with next char
get_int_arg(result, TRUE);
get_int_arg(result, FALSE);
typesystem_want_addr(result);
if (GotByte == ']')
address_mode_bits = AMB_LONGINDIRECT | AMB_INDEX(get_index(TRUE));