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

This commit is contained in:
ceriel 1988-08-05 11:22:39 +00:00
parent dc72163d44
commit 905c5a349f

View file

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