Examples of ImcCJUMP


Examples of compiler.imcode.ImcCJUMP

  public Label execStmt(ImcStmt stmt) {
    if (debug == 1) System.err.println(prefix + stmt);

    if (stmt instanceof ImcCJUMP) {
      ImcCJUMP cjump = (ImcCJUMP)stmt;
      Integer cond = execExpr(cjump.cond);
      return cond != 0 ? cjump.trueLabel : cjump.falseLabel;
    }
    if (stmt instanceof ImcEXP) {
      ImcEXP expr = (ImcEXP)stmt;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.