mattunlv / ProcessJ-main-branch-old

ProcessJ Compiler Project
2 stars 4 forks source link

terneary #20

Open mattunlv opened 7 years ago

mattunlv commented 7 years ago

wait = (wait < 0 ? -wait : wait);

generates

_ld3$wait = (_ld3$wait < 0) ? -_ld3$wait; : _ld3$wait;;

a few too many semicolons...