mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 19:29:18 +02:00
Refactor code to avoid problems with -CR option
git-svn-id: trunk@49155 -
This commit is contained in:
parent
09628e56cb
commit
9f8566dd84
@ -52,9 +52,12 @@ Implementation
|
|||||||
var
|
var
|
||||||
p: taicpu;
|
p: taicpu;
|
||||||
begin
|
begin
|
||||||
p := taicpu(hp);
|
|
||||||
Result := false;
|
Result := false;
|
||||||
if not(assigned(hp) and (hp.typ = ait_instruction) and (p.ops > 0)) then
|
if not(assigned(hp) and (hp.typ = ait_instruction)) then
|
||||||
|
exit;
|
||||||
|
|
||||||
|
p := taicpu(hp);
|
||||||
|
if not(p.ops > 0) then
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
case p.opcode of
|
case p.opcode of
|
||||||
|
Loading…
Reference in New Issue
Block a user