Fix go bindings after FixedVectorType -> VectorType change.

This commit is contained in:
Eric Christopher 2020-05-15 16:30:11 -07:00
parent 6c68f75ee4
commit 80af39ead8
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"
}