djrieger / mjplusplus

A compiler for the MiniJava language
http://djrieger.github.io/mjplusplus/doc/doxygen/html/
6 stars 1 forks source link

Implement Not for if expressions (fix jump targets) #68

Closed djrieger closed 9 years ago

djrieger commented 9 years ago

In

if (!(7 == 4)) {

the else path is taken, should take the then path instead.

maxvogel commented 9 years ago

This actually is short-circuiting.

djrieger commented 9 years ago

Closed in ccc3e03