[compiler-rt] r263998 - [asan] Add strrchr to asan_win_dll_thunk.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 21 15:42:16 PDT 2016


Author: eugenis
Date: Mon Mar 21 17:42:15 2016
New Revision: 263998

URL: http://llvm.org/viewvc/llvm-project?rev=263998&view=rev
Log:
[asan] Add strrchr to asan_win_dll_thunk.

"dll_host.cc" test says there is a mismatch.

Modified:
    compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc

Modified: compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc?rev=263998&r1=263997&r2=263998&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc Mon Mar 21 17:42:15 2016
@@ -398,6 +398,7 @@ INTERCEPT_LIBRARY_FUNCTION(strncmp);
 INTERCEPT_LIBRARY_FUNCTION(strncpy);
 INTERCEPT_LIBRARY_FUNCTION(strnlen);
 INTERCEPT_LIBRARY_FUNCTION(strpbrk);
+INTERCEPT_LIBRARY_FUNCTION(strrchr);
 INTERCEPT_LIBRARY_FUNCTION(strspn);
 INTERCEPT_LIBRARY_FUNCTION(strstr);
 INTERCEPT_LIBRARY_FUNCTION(strtol);




More information about the llvm-commits mailing list