[compiler-rt] [asan][NFCI] Add ASAN_POISONING_H header guard (PR #133178)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 16:25:06 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Thurston Dang (thurstond)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/133178.diff
1 Files Affected:
- (modified) compiler-rt/lib/asan/asan_poisoning.h (+5)
``````````diff
diff --git a/compiler-rt/lib/asan/asan_poisoning.h b/compiler-rt/lib/asan/asan_poisoning.h
index 600bd011f304c..b68af1086e17d 100644
--- a/compiler-rt/lib/asan/asan_poisoning.h
+++ b/compiler-rt/lib/asan/asan_poisoning.h
@@ -11,6 +11,9 @@
// Shadow memory poisoning by ASan RTL and by user application.
//===----------------------------------------------------------------------===//
+#ifndef ASAN_POISONING_H
+#define ASAN_POISONING_H
+
#include "asan_interceptors.h"
#include "asan_internal.h"
#include "asan_mapping.h"
@@ -96,3 +99,5 @@ ALWAYS_INLINE void FastPoisonShadowPartialRightRedzone(
void FlushUnneededASanShadowMemory(uptr p, uptr size);
} // namespace __asan
+
+#endif // ASAN_POISONING_H
``````````
</details>
https://github.com/llvm/llvm-project/pull/133178
More information about the llvm-commits
mailing list