// $Id: LeRelOpExpr.java,v 1.1.1.1 1999/12/05 22:19:51 mpp Exp $

package IR2;

public class LeRelOpExpr extends RelOpExpr {
  public LeRelOpExpr(RValue a1, RValue a2)
	throws SemanticTypeException { super(a1, a2); }

  public String node_name() { return "le_rel_op_expr"; }

  public String desc() { return super.desc("<="); }

  protected int op_num() { return DelocalizedBinaryOpInstruction.LE; }

}
