[llvm] [MVT] Expand the MVT enum to allow more types (PR #69603)

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 19 06:23:30 PDT 2023


================
@@ -33,7 +33,7 @@ namespace llvm {
   /// type can be represented by an MVT.
   class MVT {
   public:
-    enum SimpleValueType : uint8_t {
+    enum SimpleValueType : uint16_t {
----------------
jayfoad wrote:

This is doubling the size of MVT, right? Is there any measurable impact on compilation speed or memory usage?

https://github.com/llvm/llvm-project/pull/69603


More information about the llvm-commits mailing list