[compiler-rt] r207113 - Add DLL thunks for recently-added memcpy, memset and memmove ASan intrinsics
Timur Iskhodzhanov
timurrrr at google.com
Thu Apr 24 05:58:26 PDT 2014
Author: timurrrr
Date: Thu Apr 24 07:58:26 2014
New Revision: 207113
URL: http://llvm.org/viewvc/llvm-project?rev=207113&view=rev
Log:
Add DLL thunks for recently-added memcpy, memset and memmove ASan intrinsics
Modified:
compiler-rt/trunk/lib/asan/asan_dll_thunk.cc
Modified: compiler-rt/trunk/lib/asan/asan_dll_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_dll_thunk.cc?rev=207113&r1=207112&r2=207113&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_dll_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_dll_thunk.cc Thu Apr 24 07:58:26 2014
@@ -148,6 +148,10 @@ WRAP_V_W(__asan_report_load8)
WRAP_V_W(__asan_report_load16)
WRAP_V_WW(__asan_report_load_n)
+WRAP_W_WWW(__asan_memcpy);
+WRAP_W_WWW(__asan_memset);
+WRAP_W_WWW(__asan_memmove);
+
WRAP_V_WW(__asan_register_globals)
WRAP_V_WW(__asan_unregister_globals)
More information about the llvm-commits
mailing list