[asan][NFCI] Add ASAN_POISONING_H header guard (#133178)

This commit is contained in:
Thurston Dang
2025-03-26 22:52:34 -07:00
committed by GitHub
parent 291fd8f2ce
commit 68e90e4f0c

View File

@@ -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