From: David Given Date: Sat, 31 Dec 2016 00:14:04 +0000 (+0000) Subject: Fix issue where !x was actually calculating !!x. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=fa02a855e84968ae60dbb7993178cc222bf040f8;p=ack.git Fix issue where !x was actually calculating !!x. --- diff --git a/lang/b/compiler/b1.c b/lang/b/compiler/b1.c index 30ce5c7f7..e959e797b 100644 --- a/lang/b/compiler/b1.c +++ b/lang/b/compiler/b1.c @@ -291,7 +291,7 @@ rcexpr(struct tnode *tr) case EXCLA: rcexpr(tr->tr1); - C_tne(); + C_teq(); return; case NEG: