[llvm] [AddressSanitizer] Remove memory effects from functions (PR #130495)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 03:17:50 PDT 2025
================
@@ -58,6 +58,10 @@ void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
bool IsKasan, uint64_t *ShadowBase,
int *MappingScale, bool *OrShadowOffset);
+/// Remove memory attributes that are incompatible with the instrumentation
+/// added by AddressSanitizer. See more details in the implementation.
+void removeFnAttributes(Function &F);
----------------
fhahn wrote:
this is in the global llvm:: namespace and should probably have a more sanitizer specific name to avoid confusion.
https://github.com/llvm/llvm-project/pull/130495
More information about the llvm-commits
mailing list