mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-23 07:52:06 +00:00
Update go bindings for 2dea3f1298
This commit is contained in:
parent
4b33c935db
commit
6bec6a9755
@ -224,21 +224,22 @@ const (
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
const (
|
||||
VoidTypeKind TypeKind = C.LLVMVoidTypeKind
|
||||
FloatTypeKind TypeKind = C.LLVMFloatTypeKind
|
||||
DoubleTypeKind TypeKind = C.LLVMDoubleTypeKind
|
||||
X86_FP80TypeKind TypeKind = C.LLVMX86_FP80TypeKind
|
||||
FP128TypeKind TypeKind = C.LLVMFP128TypeKind
|
||||
PPC_FP128TypeKind TypeKind = C.LLVMPPC_FP128TypeKind
|
||||
LabelTypeKind TypeKind = C.LLVMLabelTypeKind
|
||||
IntegerTypeKind TypeKind = C.LLVMIntegerTypeKind
|
||||
FunctionTypeKind TypeKind = C.LLVMFunctionTypeKind
|
||||
StructTypeKind TypeKind = C.LLVMStructTypeKind
|
||||
ArrayTypeKind TypeKind = C.LLVMArrayTypeKind
|
||||
PointerTypeKind TypeKind = C.LLVMPointerTypeKind
|
||||
VectorTypeKind TypeKind = C.LLVMVectorTypeKind
|
||||
MetadataTypeKind TypeKind = C.LLVMMetadataTypeKind
|
||||
TokenTypeKind TypeKind = C.LLVMTokenTypeKind
|
||||
VoidTypeKind TypeKind = C.LLVMVoidTypeKind
|
||||
FloatTypeKind TypeKind = C.LLVMFloatTypeKind
|
||||
DoubleTypeKind TypeKind = C.LLVMDoubleTypeKind
|
||||
X86_FP80TypeKind TypeKind = C.LLVMX86_FP80TypeKind
|
||||
FP128TypeKind TypeKind = C.LLVMFP128TypeKind
|
||||
PPC_FP128TypeKind TypeKind = C.LLVMPPC_FP128TypeKind
|
||||
LabelTypeKind TypeKind = C.LLVMLabelTypeKind
|
||||
IntegerTypeKind TypeKind = C.LLVMIntegerTypeKind
|
||||
FunctionTypeKind TypeKind = C.LLVMFunctionTypeKind
|
||||
StructTypeKind TypeKind = C.LLVMStructTypeKind
|
||||
ArrayTypeKind TypeKind = C.LLVMArrayTypeKind
|
||||
PointerTypeKind TypeKind = C.LLVMPointerTypeKind
|
||||
MetadataTypeKind TypeKind = C.LLVMMetadataTypeKind
|
||||
TokenTypeKind TypeKind = C.LLVMTokenTypeKind
|
||||
FixedVectorTypeKind TypeKind = C.LLVMFixedVectorTypeKind
|
||||
ScalableVectorTypeKind TypeKind = C.LLVMScalableVectorTypeKind
|
||||
)
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
@ -40,10 +40,12 @@ func (t TypeKind) String() string {
|
||||
return "ArrayTypeKind"
|
||||
case PointerTypeKind:
|
||||
return "PointerTypeKind"
|
||||
case VectorTypeKind:
|
||||
return "VectorTypeKind"
|
||||
case MetadataTypeKind:
|
||||
return "MetadataTypeKind"
|
||||
case FixedVectorTypeKind:
|
||||
return "FixedVectorTypeKind"
|
||||
case ScalableVectorTypeKind:
|
||||
return "ScalableVectorTypeKind"
|
||||
}
|
||||
panic("unreachable")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user