[llvm-branch-commits] [lld] [llvm] [RFC][AMDGPU][lld] Add object linking support (PR #206787)

Matt Arsenault via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jul 2 00:15:01 PDT 2026


================
@@ -6936,6 +6937,12 @@ bool AMDGPUAsmParser::ParseDirectiveAMDGPUInfo() {
         return true;
       FI.Occupancy = static_cast<uint32_t>(Val);
       HasScalarAttrs = true;
+    } else if (Dir == "wave_size") {
+      int64_t Val;
+      if (getParser().parseAbsoluteExpression(Val))
+        return true;
+      FI.WaveSize = static_cast<uint32_t>(Val);
+      HasScalarAttrs = true;
----------------
arsenm wrote:

Can you submit the new fields separately 

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


More information about the llvm-branch-commits mailing list