diff options
author | Kostya Serebryany <kcc@google.com> | 2012-05-31 13:42:53 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2012-05-31 13:42:53 +0000 |
commit | 16e0075746b21ed866ec3be21ef0d1e46f0efed5 (patch) | |
tree | abb361713e8229c569ae2e16444c6ede628c1bf4 /lib/sanitizer_common/sanitizer_libc.cc | |
parent | 20f60c53c446f42af2b4ebc3b85f6a5042be6904 (diff) | |
download | compiler-rt-16e0075746b21ed866ec3be21ef0d1e46f0efed5.tar.gz |
[asan,tsan] rename files in sanitizer_common to have a common prefix (sanitizer_).
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@157740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_libc.cc')
-rw-r--r-- | lib/sanitizer_common/sanitizer_libc.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/sanitizer_common/sanitizer_libc.cc b/lib/sanitizer_common/sanitizer_libc.cc new file mode 100644 index 000000000..c9474fbcd --- /dev/null +++ b/lib/sanitizer_common/sanitizer_libc.cc @@ -0,0 +1,20 @@ +//===-- sanitizer_libc.cc ---------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file is shared between AddressSanitizer and ThreadSanitizer +// run-time libraries. See sanitizer_libc.h for details. +//===----------------------------------------------------------------------===// +#include "sanitizer_libc.h" + +namespace __sanitizer { + +void MiniLibcStub() { +} + +} // namespace __sanitizer |