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 */
|
LLVMVectorTypeKind, /**< Fixed width SIMD vector type */
|
||||||
LLVMMetadataTypeKind, /**< Metadata */
|
LLVMMetadataTypeKind, /**< Metadata */
|
||||||
LLVMX86_MMXTypeKind, /**< X86 MMX */
|
LLVMX86_MMXTypeKind, /**< X86 MMX */
|
||||||
LLVMX86_AMXTypeKind, /**< X86 AMX */
|
|
||||||
LLVMTokenTypeKind, /**< Tokens */
|
LLVMTokenTypeKind, /**< Tokens */
|
||||||
LLVMScalableVectorTypeKind, /**< Scalable SIMD vector type */
|
LLVMScalableVectorTypeKind, /**< Scalable SIMD vector type */
|
||||||
LLVMBFloatTypeKind /**< 16 bit brain floating point type */
|
LLVMBFloatTypeKind, /**< 16 bit brain floating point type */
|
||||||
|
LLVMX86_AMXTypeKind /**< X86 AMX */
|
||||||
} LLVMTypeKind;
|
} LLVMTypeKind;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@ -270,7 +270,6 @@ typedef enum {
|
||||||
LLVMConstantVectorValueKind,
|
LLVMConstantVectorValueKind,
|
||||||
|
|
||||||
LLVMUndefValueValueKind,
|
LLVMUndefValueValueKind,
|
||||||
LLVMPoisonValueValueKind,
|
|
||||||
LLVMConstantAggregateZeroValueKind,
|
LLVMConstantAggregateZeroValueKind,
|
||||||
LLVMConstantDataArrayValueKind,
|
LLVMConstantDataArrayValueKind,
|
||||||
LLVMConstantDataVectorValueKind,
|
LLVMConstantDataVectorValueKind,
|
||||||
|
@ -283,6 +282,7 @@ typedef enum {
|
||||||
LLVMInlineAsmValueKind,
|
LLVMInlineAsmValueKind,
|
||||||
|
|
||||||
LLVMInstructionValueKind,
|
LLVMInstructionValueKind,
|
||||||
|
LLVMPoisonValueValueKind
|
||||||
} LLVMValueKind;
|
} LLVMValueKind;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
Loading…
Reference in New Issue