Package compiler.imcode

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

Related Classes of compiler.imcode.ImcCJUMP

Copyright © 2018 www.massapicom. 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.