fix: >= and <= were wrong in constant expressions
This commit is contained in:
parent
dc72163d44
commit
905c5a349f
1 changed files with 2 additions and 2 deletions
|
@ -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 '=':
|
||||||
|
|
Loading…
Reference in a new issue