forked from OSchip/llvm-project
Fix go bindings after FixedVectorType -> VectorType change.
This commit is contained in:
parent
6c68f75ee4
commit
80af39ead8
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue