[llvm] [AMDGPU] Lower LDS in functions without sanitize_address in amdgpu-sw-lower-lds. (PR #131147)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 8 08:59:54 PDT 2025
================
@@ -1135,6 +1134,17 @@ void AMDGPUSwLowerLDS::initAsanInfo() {
AsanInfo.Offset = Offset;
}
+static bool hasFnWithSanitizeAddressAttr(FunctionVariableMap &LDSAccesses) {
+ for (auto &K : LDSAccesses) {
+ Function *F = K.first;
+ if (!F)
+ continue;
----------------
arsenm wrote:
Why would F be null?
https://github.com/llvm/llvm-project/pull/131147
More information about the llvm-commits
mailing list