forked from OSchip/llvm-project
[sanitizer] Use the new sanitizer_interception.h header in all interceptors.
llvm-svn: 197808
This commit is contained in:
parent
3d0edea4e1
commit
42cebb00da
|
@ -21,7 +21,6 @@
|
|||
#include "asan_report.h"
|
||||
#include "asan_stack.h"
|
||||
#include "asan_stats.h"
|
||||
#include "interception/interception.h"
|
||||
#include "sanitizer_common/sanitizer_libc.h"
|
||||
|
||||
namespace __asan {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#define ASAN_INTERCEPTORS_H
|
||||
|
||||
#include "asan_internal.h"
|
||||
#include "interception/interception.h"
|
||||
#include "sanitizer_common/sanitizer_interception.h"
|
||||
|
||||
DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size)
|
||||
DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size)
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#include "asan_interceptors.h"
|
||||
#include "asan_internal.h"
|
||||
#include "asan_stack.h"
|
||||
#include "interception/interception.h"
|
||||
#include "sanitizer_common/sanitizer_interception.h"
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
#include "asan_internal.h"
|
||||
#include "asan_stack.h"
|
||||
|
||||
#include "sanitizer_common/sanitizer_interception.h"
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
namespace __asan {
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "interception/interception.h"
|
||||
#include "sanitizer_common/sanitizer_allocator.h"
|
||||
#include "sanitizer_common/sanitizer_atomic.h"
|
||||
#include "sanitizer_common/sanitizer_common.h"
|
||||
#include "sanitizer_common/sanitizer_flags.h"
|
||||
#include "sanitizer_common/sanitizer_interception.h"
|
||||
#include "sanitizer_common/sanitizer_internal_defs.h"
|
||||
#include "sanitizer_common/sanitizer_linux.h"
|
||||
#include "sanitizer_common/sanitizer_platform_limits_posix.h"
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#include "sanitizer_common/sanitizer_stacktrace.h"
|
||||
#include "sanitizer_common/sanitizer_symbolizer.h"
|
||||
|
||||
#include "interception/interception.h"
|
||||
|
||||
// ACHTUNG! No system header includes in this file.
|
||||
|
||||
|
|
Loading…
Reference in New Issue