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

org.qbicc.machine.llvm.op.Switch Maven / Gradle / Ivy

package org.qbicc.machine.llvm.op;

import org.qbicc.machine.llvm.LLBasicBlock;
import org.qbicc.machine.llvm.LLValue;

/**
 *
 */
public interface Switch extends Instruction {
    Switch meta(String name, LLValue data);

    Switch comment(String comment);

    Case case_(LLValue value, LLBasicBlock target);

    interface Case {
        Case case_(LLValue value, LLBasicBlock target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy