mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 01:39:27 +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
|
||||
p: taicpu;
|
||||
begin
|
||||
p := taicpu(hp);
|
||||
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;
|
||||
|
||||
case p.opcode of
|
||||
|
Loading…
Reference in New Issue
Block a user