![JAR search and dependency download from the Maven repository](/logo.png)
org.qbicc.machine.llvm.impl.AbstractBranch Maven / Gradle / Ivy
package org.qbicc.machine.llvm.impl;
import java.io.IOException;
import org.qbicc.machine.llvm.LLValue;
import org.qbicc.machine.llvm.op.Branch;
abstract class AbstractBranch extends AbstractInstruction implements Branch {
AbstractBranch() {
super();
}
public Branch meta(final String name, final LLValue data) {
super.meta(name, data);
return this;
}
public Branch comment(final String comment) {
super.comment(comment);
return this;
}
public Appendable appendTo(final Appendable target) throws IOException {
return super.appendTo(target).append("br");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy