Package org.renjin.gcc.gimple.ins

Source Code of org.renjin.gcc.gimple.ins.GimpleGoto

package org.renjin.gcc.gimple.ins;

import org.renjin.gcc.gimple.GimpleLabel;
import org.renjin.gcc.gimple.GimpleVisitor;
import org.renjin.gcc.gimple.ins.GimpleIns;

public class GimpleGoto extends GimpleIns {
  private int target;

  public GimpleLabel getTargetLabel() {
    return new GimpleLabel("bb" + target);
  }

  public int getTarget() {
    return target;
  }

  public void setTarget(int target) {
    this.target = target;
  }

  @Override
  public String toString() {
    return "goto <" + getTargetLabel() + ">";
  }

  @Override
  public void visit(GimpleVisitor visitor) {
    visitor.visitGoto(this);

  }
}
TOP

Related Classes of org.renjin.gcc.gimple.ins.GimpleGoto

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.