From a221f2af79ac6f13b4b74cab79037bda1430327a Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 18 Feb 2023 11:14:34 +0100 Subject: [PATCH] * completed post/pre inc/decrement addressing mode instructions in TAoptBaseCpu.RegModifiedByInstruction --- compiler/avr/aoptcpub.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/avr/aoptcpub.pas b/compiler/avr/aoptcpub.pas index 17f783ea98..f5891434e4 100644 --- a/compiler/avr/aoptcpub.pas +++ b/compiler/avr/aoptcpub.pas @@ -140,14 +140,14 @@ Implementation exit; end; - If (taicpu(p1).opcode=A_LD) and + If (taicpu(p1).opcode in [A_LD,A_LPM,A_ELPM]) and (taicpu(p1).oper[1]^.ref^.addressmode in [AM_POSTINCREMENT,AM_PREDECREMENT]) and (taicpu(p1).oper[1]^.ref^.base=reg) then begin Result:=true; exit; end; - If (taicpu(p1).opcode=A_ST) and + If (taicpu(p1).opcode in [A_ST,A_SPM]) and (taicpu(p1).oper[0]^.ref^.addressmode in [AM_POSTINCREMENT,AM_PREDECREMENT]) and (taicpu(p1).oper[0]^.ref^.base=reg) then begin Result:=true;