llvmir some opt
This commit is contained in:
14
midend/llvm/constant/IrConstant.java
Normal file
14
midend/llvm/constant/IrConstant.java
Normal file
@@ -0,0 +1,14 @@
|
||||
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 "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user