commit 5b8b78f2f1d4ad7d82ac1c92c9aa00d01c343f32
parent 04ed7f56aad27062a38a70936ec760ec99c99089
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Sat, 3 Oct 2015 11:38:28 -0400
== and != do not consider signs
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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;