[compiler-rt] [Compiler-rt] Fix wrong assignment in compiler_rt (PR #164713)

Yuxuan Chen via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 24 11:09:28 PDT 2025


================
@@ -36,14 +36,14 @@ enum VendorSignatures {
   SIG_AMD = 0x68747541,   // Auth
 };
 
-enum ProcessorVendors {
+enum ProcessorVendors : unsigned int {
----------------
yuxuanchen1997 wrote:

Ok. _enum-type-specifier_ is a C23 feature and only supported in gcc-13+. Is this `: unsigned int` important here and can we get rid of it in favor of compatibility with older compilers?

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


More information about the llvm-commits mailing list