* reverted r46220 as it is fixed now properly

git-svn-id: trunk@46276 -
This commit is contained in:
florian 2020-08-05 21:15:33 +00:00
parent 28f25b2df0
commit e14a3f17e6
3 changed files with 8 additions and 2 deletions

1
.gitattributes vendored
View File

@ -18407,6 +18407,7 @@ tests/webtbs/tw3742.pp svneol=native#text/plain
tests/webtbs/tw37427.pp svneol=native#text/pascal
tests/webtbs/tw37449.pp svneol=native#text/pascal
tests/webtbs/tw37468.pp svneol=native#text/pascal
tests/webtbs/tw37493.pp svneol=native#text/pascal
tests/webtbs/tw3751.pp svneol=native#text/plain
tests/webtbs/tw3758.pp svneol=native#text/plain
tests/webtbs/tw3764.pp svneol=native#text/plain

View File

@ -1440,10 +1440,10 @@ implementation
case nodetype of
andn,orn:
begin
{ full boolean evaluation is only useful if the nodes are not too complex and if no flags/jumps must be converted,
{ full boolean evaluation is only useful if the nodes are not too complex and if no jumps must be converted,
further, we need to know the expectloc }
if (node_complexity(right)<=2) and
not(left.expectloc in [LOC_FLAGS,LOC_JUMP,LOC_INVALID]) and not(right.expectloc in [LOC_FLAGS,LOC_JUMP,LOC_INVALID]) then
not(left.expectloc in [LOC_JUMP,LOC_INVALID]) and not(right.expectloc in [LOC_JUMP,LOC_INVALID]) then
begin
{ we need to copy the whole tree to force another pass_1 }
include(localswitches,cs_full_boolean_eval);

5
tests/webtbs/tw37493.pp Normal file
View File

@ -0,0 +1,5 @@
{ %OPT=-O3 }
var a : integer;
begin
write(not((1 in[a]) and (a > a) and (a in[1])))
end.