fix: >= and <= were wrong in constant expressions

This commit is contained in:
ceriel 1988-08-05 11:22:39 +00:00
parent 5e7b675797
commit 124ff779dd

View File

@ -224,11 +224,11 @@ cstibin(expp)
break;
case LESSEQUAL:
o1 = (o2 <= o1);
o1 = (o1 <= o2);
break;
case GREATEREQUAL:
o1 = (o2 >= o1);
o1 = (o1 >= o2);
break;
case '=':