// $Id: ShlArithOpExpr.java,v 1.2 1999/11/22 00:09:42 golem Exp $

package IR2;

public class ShlArithOpExpr extends ArithOpExpr {
  public ShlArithOpExpr(RValue a1, RValue a2)
	throws SemanticTypeException { super(a1, a2); }

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

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

}
