From 4a25d42a3cc27ec98886df838322b31cdaaf7f5f Mon Sep 17 00:00:00 2001 From: Timur Iskhodzhanov Date: Tue, 4 Feb 2014 23:54:26 +0000 Subject: [PATCH] [ASan/Win] Add DLL thunks for __asan_{,un}poison_memory_region llvm-svn: 200809 --- compiler-rt/lib/asan/asan_dll_thunk.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler-rt/lib/asan/asan_dll_thunk.cc b/compiler-rt/lib/asan/asan_dll_thunk.cc index f6e8e09f553a..311b55191da9 100644 --- a/compiler-rt/lib/asan/asan_dll_thunk.cc +++ b/compiler-rt/lib/asan/asan_dll_thunk.cc @@ -151,6 +151,9 @@ WRAP_V_WW(__asan_report_load_n) WRAP_V_WW(__asan_register_globals) WRAP_V_WW(__asan_unregister_globals) +WRAP_V_WW(__asan_poison_memory_region) +WRAP_V_WW(__asan_unpoison_memory_region) + WRAP_W_WW(__asan_stack_malloc_0) WRAP_W_WW(__asan_stack_malloc_1) WRAP_W_WW(__asan_stack_malloc_2)