From 5b8b78f2f1d4ad7d82ac1c92c9aa00d01c343f32 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Sat, 3 Oct 2015 11:38:28 -0400 Subject: == and != do not consider signs --- minic/minic.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'minic/minic.y') diff --git a/minic/minic.y b/minic/minic.y index 63fafc4..c97a4ca 100644 --- a/minic/minic.y +++ b/minic/minic.y @@ -242,8 +242,8 @@ expr(Node *n) ['%'] = "rem", ['<'] = "cslt", /* meeeeh, careful with pointers */ ['l'] = "csle", - ['e'] = "cseq", - ['n'] = "csne", + ['e'] = "ceq", + ['n'] = "cne", }; Symb sr, s0, s1; -- cgit 1.4.1