* UMUL et al. have only register restrictions on arm below v6

git-svn-id: trunk@25171 -
This commit is contained in:
florian 2013-07-24 20:18:12 +00:00
parent 404c3efa58
commit 6f5bcaae2b

View File

@ -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,