* m68k/ra68kmot.pas, tm68kmotreader.gettoken:

if "firsttoken" isn't set we must not take the possibility into account that the token could be an opcode

git-svn-id: trunk@22796 -
This commit is contained in:
svenbarth 2012-10-21 13:54:55 +00:00
parent 1822c46d8a
commit 05fc3bc427

View File

@ -315,8 +315,10 @@ const
end;
uppervar(actasmpattern);
If is_asmopcode(actasmpattern) then
exit;
{ this isn't the first token, so it can't be an
opcode }
{If is_asmopcode(actasmpattern) then
exit;}
if is_register(actasmpattern) then
exit;
if is_asmdirective(actasmpattern) then