[llvm] [MIR] Serialize virtual register flags (PR #110228)

Akshat Oke via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 3 23:05:22 PDT 2024


================
@@ -47,6 +47,7 @@ struct VRegInfo {
   } D;
   Register VReg;
   Register PreferredReg;
+  std::vector<::uint8_t> Flags;
----------------
Akshat-Oke wrote:

There's a struct named `uint8_t` defined in this class.
I believe the author meant `enum : uint8_t` instead.

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


More information about the llvm-commits mailing list