1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

Fix go bindings after FixedVectorType -> VectorType change.

This commit is contained in:
Eric Christopher 2020-05-15 16:30:11 -07:00
parent 0e89c7b708
commit 8442719327
2 changed files with 3 additions and 3 deletions

View File

@ -238,7 +238,7 @@ const (
PointerTypeKind TypeKind = C.LLVMPointerTypeKind
MetadataTypeKind TypeKind = C.LLVMMetadataTypeKind
TokenTypeKind TypeKind = C.LLVMTokenTypeKind
FixedVectorTypeKind TypeKind = C.LLVMFixedVectorTypeKind
VectorTypeKind TypeKind = C.LLVMVectorTypeKind
ScalableVectorTypeKind TypeKind = C.LLVMScalableVectorTypeKind
)

View File

@ -42,8 +42,8 @@ func (t TypeKind) String() string {
return "PointerTypeKind"
case MetadataTypeKind:
return "MetadataTypeKind"
case FixedVectorTypeKind:
return "FixedVectorTypeKind"
case VectorTypeKind:
return "VectorTypeKind"
case ScalableVectorTypeKind:
return "ScalableVectorTypeKind"
}