forked from OSchip/llvm-project
[llvm-c] Move LLVMX86_AMXTypeKind & LLVMPoisonValueValueKind to the bottom to avoid value changes compared with LLVM<=11
Fixes PR48905
This commit is contained in:
parent
727fc31a98
commit
6612c2bb68
|
@ -160,10 +160,10 @@ typedef enum {
|
|||
LLVMVectorTypeKind, /**< Fixed width SIMD vector type */
|
||||
LLVMMetadataTypeKind, /**< Metadata */
|
||||
LLVMX86_MMXTypeKind, /**< X86 MMX */
|
||||
LLVMX86_AMXTypeKind, /**< X86 AMX */
|
||||
LLVMTokenTypeKind, /**< Tokens */
|
||||
LLVMScalableVectorTypeKind, /**< Scalable SIMD vector type */
|
||||
LLVMBFloatTypeKind /**< 16 bit brain floating point type */
|
||||
LLVMBFloatTypeKind, /**< 16 bit brain floating point type */
|
||||
LLVMX86_AMXTypeKind /**< X86 AMX */
|
||||
} LLVMTypeKind;
|
||||
|
||||
typedef enum {
|
||||
|
@ -270,7 +270,6 @@ typedef enum {
|
|||
LLVMConstantVectorValueKind,
|
||||
|
||||
LLVMUndefValueValueKind,
|
||||
LLVMPoisonValueValueKind,
|
||||
LLVMConstantAggregateZeroValueKind,
|
||||
LLVMConstantDataArrayValueKind,
|
||||
LLVMConstantDataVectorValueKind,
|
||||
|
@ -283,6 +282,7 @@ typedef enum {
|
|||
LLVMInlineAsmValueKind,
|
||||
|
||||
LLVMInstructionValueKind,
|
||||
LLVMPoisonValueValueKind
|
||||
} LLVMValueKind;
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in New Issue