================
@@ -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
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits