diff options
author | Reid Kleckner <rnk@google.com> | 2016-03-22 15:46:50 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-03-22 15:46:50 +0000 |
commit | d83633f55213898cc719b1e9b9f65f7f422e30bb (patch) | |
tree | 5dcb2b7bb09fa02aed52748cddf28685bb444077 /compiler-rt/lib/interception/interception_win.cc | |
parent | 2310c658d8b71605025dcd13bf6e59ba7aedc7cf (diff) | |
download | bcm5719-llvm-d83633f55213898cc719b1e9b9f65f7f422e30bb.tar.gz bcm5719-llvm-d83633f55213898cc719b1e9b9f65f7f422e30bb.zip |
[asan] Add ucrtbase.dll to the list of DLLs to intercept
Reduces number of test failures in check-asan-dynamic with VS 2015.
llvm-svn: 264061
Diffstat (limited to 'compiler-rt/lib/interception/interception_win.cc')
-rw-r--r-- | compiler-rt/lib/interception/interception_win.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception_win.cc b/compiler-rt/lib/interception/interception_win.cc index 0511ed9353d..efc53dcc12b 100644 --- a/compiler-rt/lib/interception/interception_win.cc +++ b/compiler-rt/lib/interception/interception_win.cc @@ -197,6 +197,7 @@ static void **InterestingDLLsAvailable() { "kernel32.dll", "msvcr110.dll", // VS2012 "msvcr120.dll", // VS2013 + "ucrtbase.dll", // Universal CRT // NTDLL should go last as it exports some functions that we should override // in the CRT [presumably only used internally]. "ntdll.dll", NULL |