* recognise tb(n)z as branch opcode (patch by Edmund Grimley Evans)

git-svn-id: trunk@30846 -
This commit is contained in:
Jonas Maebe 2015-05-14 14:42:03 +00:00
parent b60bbf26e1
commit 7395058cf3

View File

@ -429,7 +429,7 @@ unit cpubase;
function is_calljmp(o:tasmop):boolean;{$ifdef USEINLINE}inline;{$endif USEINLINE}
begin
is_calljmp:=o in [A_B,A_BL,A_BLR,A_RET,A_CBNZ,A_CBZ];
is_calljmp:=o in [A_B,A_BL,A_BLR,A_RET,A_CBNZ,A_CBZ,A_TBNZ,A_TBZ];
end;