mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Fix go bindings after FixedVectorType -> VectorType change.
This commit is contained in:
parent
0e89c7b708
commit
8442719327
@ -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…
x
Reference in New Issue
Block a user