[clang] [llvm] [clang][LoongArch] Add support for LoongArch32 (PR #172619)

via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 16 18:33:44 PST 2026


================
@@ -67,6 +70,9 @@ enum FeatureKind : uint32_t {
 
   // sc.q is available.
   FK_SCQ = 1 << 14,
+
+  // 32-bit standard variant is available.
+  FK_32S = 1 << 5,
----------------
wangleiat wrote:

`FK_32S` has the same value as `FK_LASX`. Does this impact feature checking?

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


More information about the cfe-commits mailing list