mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-05 09:47:25 +01:00
* more readable code
This commit is contained in:
parent
d520f1df0b
commit
32a19eb5b3
@ -2028,12 +2028,8 @@ Implementation
|
||||
{ If p.opcode = A_STR, then ThisReg will be NR_NO }
|
||||
if (
|
||||
{$ifdef ARM}
|
||||
(p_second.typ = ait_instruction) and
|
||||
(taicpu(p_second).condition = taicpu(p).condition) and
|
||||
(
|
||||
(taicpu(p_second).opcode = A_MOV) or
|
||||
(taicpu(p_second).opcode = A_MOVW)
|
||||
)
|
||||
MatchInstruction(p_second, A_MOV, [taicpu(p).condition], []) or
|
||||
MatchInstruction(p_second, A_MOVW, [taicpu(p).condition], [])
|
||||
{$endif ARM}
|
||||
{$ifdef AARCH64}
|
||||
MatchInstruction(p, A_MOVZ, []) or
|
||||
@ -2073,11 +2069,9 @@ Implementation
|
||||
(
|
||||
(
|
||||
{$ifdef ARM}
|
||||
(p_second.typ = ait_instruction) and
|
||||
(taicpu(p_second).condition = taicpu(p).condition) and
|
||||
(
|
||||
(taicpu(p_second).opcode = A_MOV) or
|
||||
(taicpu(p_second).opcode = A_MOVW)
|
||||
MatchInstruction(p_second, A_MOV, [taicpu(p).condition], []) or
|
||||
MatchInstruction(p_second, A_MOVW, [taicpu(p).condition], [])
|
||||
) and
|
||||
{$endif ARM}
|
||||
{$ifdef AARCH64}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user