diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-09-03 15:50:13 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-09-03 15:50:13 +0000 |
commit | 2eea5894febecb877f19c60b4bfada47626fa66e (patch) | |
tree | 6ca56ddeb9b091f6ccd0253b40d7d30d2b93c850 /compiler-rt | |
parent | 28281225837df8f9c4556cab3efe958c9d907c57 (diff) | |
download | bcm5719-llvm-2eea5894febecb877f19c60b4bfada47626fa66e.tar.gz bcm5719-llvm-2eea5894febecb877f19c60b4bfada47626fa66e.zip |
[asan] Hopefully un-break the RTL on Windows
llvm-svn: 189821
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index 6df0730c19f..c3f063fc313 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -197,7 +197,8 @@ void SetStackSizeLimitInBytes(uptr limit) { } char *FindPathToBinary(const char *name) { - UNIMPLEMENTED(); + // Nothing here for now. + return 0; } void SleepForSeconds(int seconds) { |