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

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

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

final class LocalValueOf extends AbstractValue {
    final int index;

    LocalValueOf(final AbstractInstruction instruction, final int index) {
        super(instruction);
        this.index = index;
    }

    public Appendable appendTo(final Appendable target) throws IOException {
        target.append("%tmp");
        return appendDecimal(target, index);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy