mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* check used registers properly for SETcc/TEST/Jcc -> Jcc, resolves #38940
git-svn-id: trunk@49405 -
This commit is contained in:
parent
30df955001
commit
f2e0af6d37
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18861,6 +18861,7 @@ tests/webtbs/tw38802.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38832.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38833.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3893.pp svneol=native#text/plain
|
||||
tests/webtbs/tw38940.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3898.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3899.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3900.pp svneol=native#text/plain
|
||||
|
@ -6951,7 +6951,9 @@ unit aoptx86;
|
||||
taicpu(hp2).SetCondition(SetC);
|
||||
end;
|
||||
|
||||
if not RegUsedAfterInstruction(taicpu(p).oper[0]^.reg, hp2, TmpUsedRegs) then
|
||||
{ as hp2 is a jump, we cannot use RegUsedAfterInstruction but we have to check if it is included in
|
||||
TmpUsedRegs }
|
||||
if not TmpUsedRegs[getregtype(taicpu(p).oper[0]^.reg)].IsUsed(taicpu(p).oper[0]^.reg) then
|
||||
begin
|
||||
RemoveCurrentp(p, hp2);
|
||||
DebugMsg(SPeepholeOptimization + 'SETcc/TEST/Jcc -> Jcc',p);
|
||||
|
22
tests/webtbs/tw38940.pp
Normal file
22
tests/webtbs/tw38940.pp
Normal file
@ -0,0 +1,22 @@
|
||||
{ %OPT=-O3 }
|
||||
procedure Test;
|
||||
var b:boolean;
|
||||
i:longint;
|
||||
begin
|
||||
// the following loop should be done 2 time, but it hangs up;
|
||||
b:=true;
|
||||
i:=0;
|
||||
repeat
|
||||
inc(i);
|
||||
if i>2 then
|
||||
halt(1);
|
||||
b:=not b; // first time b is set to false thats why the loop should be done again
|
||||
// second time b is set to true thats why the loop should be leave,
|
||||
// but hangs up
|
||||
until b;
|
||||
end;
|
||||
|
||||
begin
|
||||
Test;
|
||||
writeln('ok');
|
||||
end.
|
Loading…
Reference in New Issue
Block a user