From: ceriel Date: Fri, 5 Aug 1988 11:22:39 +0000 (+0000) Subject: fix: >= and <= were wrong in constant expressions X-Git-Tag: release-5-5~2949 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=905c5a349fe14c2c16785ab5ee3e22dcf6d1fd54;p=ack.git fix: >= and <= were wrong in constant expressions --- diff --git a/lang/m2/comp/cstoper.c b/lang/m2/comp/cstoper.c index 1e6553954..a29b1275e 100644 --- a/lang/m2/comp/cstoper.c +++ b/lang/m2/comp/cstoper.c @@ -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 '=':