19 lines
329 B
Java
Executable File
19 lines
329 B
Java
Executable File
package midend.llvm.constant;
|
|
|
|
import midend.llvm.value.IrValue;
|
|
import midend.llvm.type.IrType;
|
|
|
|
public class IrConstant extends IrValue {
|
|
public IrConstant(IrType type, String name) {
|
|
super(type, name);
|
|
}
|
|
|
|
public String toString() {
|
|
return "";
|
|
}
|
|
|
|
public void toMips(String label) {
|
|
|
|
}
|
|
}
|