[PATCH] D127052: [amdgpu][nfc] Allocate kernel-specific LDS struct deterministically
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 6 14:48:45 PDT 2022
arsenm added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp:90
+ std::string KernelLDSName = "llvm.amdgcn.kernel.";
+ KernelLDSName += F.getName();
+ KernelLDSName += ".lds";
----------------
Need to be careful about multiple anonymous functions
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127052/new/
https://reviews.llvm.org/D127052
More information about the llvm-commits
mailing list