[PATCH] D82135: [BFloat] Move LLVMBFloatTypeKind to the end of the enum
Ties Stuij via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 18 18:04:02 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9dda41e43327: [BFloat] Move LLVMBFloatTypeKind to the end of the enum (authored by stuij).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82135/new/
https://reviews.llvm.org/D82135
Files:
llvm/include/llvm-c/Core.h
Index: llvm/include/llvm-c/Core.h
===================================================================
--- llvm/include/llvm-c/Core.h
+++ llvm/include/llvm-c/Core.h
@@ -146,7 +146,6 @@
typedef enum {
LLVMVoidTypeKind, /**< type with no size */
LLVMHalfTypeKind, /**< 16 bit floating point type */
- LLVMBFloatTypeKind, /**< 16 bit brain floating point type */
LLVMFloatTypeKind, /**< 32 bit floating point type */
LLVMDoubleTypeKind, /**< 64 bit floating point type */
LLVMX86_FP80TypeKind, /**< 80 bit floating point type (X87) */
@@ -162,7 +161,8 @@
LLVMMetadataTypeKind, /**< Metadata */
LLVMX86_MMXTypeKind, /**< X86 MMX */
LLVMTokenTypeKind, /**< Tokens */
- LLVMScalableVectorTypeKind /**< Scalable SIMD vector type */
+ LLVMScalableVectorTypeKind, /**< Scalable SIMD vector type */
+ LLVMBFloatTypeKind /**< 16 bit brain floating point type */
} LLVMTypeKind;
typedef enum {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D82135.271890.patch
Type: text/x-patch
Size: 946 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200619/bcf86da2/attachment.bin>
More information about the llvm-commits
mailing list