org.qbicc.machine.llvm.impl.AbstractExactBinary 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.ExactBinary;
abstract class AbstractExactBinary extends AbstractBinary implements ExactBinary {
boolean exact;
AbstractExactBinary(final BasicBlockImpl block, final AbstractValue type, final AbstractValue arg1, final AbstractValue arg2) {
super(block, type, arg1, arg2);
}
public ExactBinary meta(final String name, final LLValue data) {
super.meta(name, data);
return this;
}
public ExactBinary comment(final String comment) {
super.comment(comment);
return this;
}
public ExactBinary exact() {
exact = true;
return this;
}
Appendable appendTrailer(final Appendable target) throws IOException {
if (exact) {
target.append(' ').append("exact");
}
return super.appendTrailer(target);
}
}