mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 09:07:59 +02:00
* UMUL et al. have only register restrictions on arm below v6
git-svn-id: trunk@25171 -
This commit is contained in:
parent
404c3efa58
commit
6f5bcaae2b
@ -493,9 +493,12 @@ unit rgcpu;
|
||||
A_SMULL,
|
||||
A_SMLAL:
|
||||
begin
|
||||
add_edge(getsupreg(taicpu(p).oper[0]^.reg),getsupreg(taicpu(p).oper[1]^.reg));
|
||||
add_edge(getsupreg(taicpu(p).oper[1]^.reg),getsupreg(taicpu(p).oper[2]^.reg));
|
||||
add_edge(getsupreg(taicpu(p).oper[0]^.reg),getsupreg(taicpu(p).oper[2]^.reg));
|
||||
if current_settings.cputype<cpu_armv6 then
|
||||
begin
|
||||
add_edge(getsupreg(taicpu(p).oper[0]^.reg),getsupreg(taicpu(p).oper[1]^.reg));
|
||||
add_edge(getsupreg(taicpu(p).oper[1]^.reg),getsupreg(taicpu(p).oper[2]^.reg));
|
||||
add_edge(getsupreg(taicpu(p).oper[0]^.reg),getsupreg(taicpu(p).oper[2]^.reg));
|
||||
end;
|
||||
end;
|
||||
A_LDRB,
|
||||
A_STRB,
|
||||
|
Loading…
Reference in New Issue
Block a user