All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qbicc.machine.llvm.impl.UnconditionalBranchImpl Maven / Gradle / Ivy

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

final class UnconditionalBranchImpl extends AbstractBranch {
    private final BasicBlockImpl dest;

    UnconditionalBranchImpl(final BasicBlockImpl dest) {
        super();
        this.dest = dest;
    }

    public Appendable appendTo(final Appendable target) throws IOException {
        return appendTrailer(dest.appendTo(super.appendTo(target).append(' ').append("label").append(' ')));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy