]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/sanitizer_common/sanitizer_symbolizer_win.cc
re PR lto/61012 (lto1: errors during merging of translation units (error: variable...
[thirdparty/gcc.git] / libsanitizer / sanitizer_common / sanitizer_symbolizer_win.cc
CommitLineData
f35db108
WM
1//===-- sanitizer_symbolizer_win.cc ---------------------------------------===//
2//
3// This file is distributed under the University of Illinois Open Source
4// License. See LICENSE.TXT for details.
5//
6//===----------------------------------------------------------------------===//
7//
8// This file is shared between AddressSanitizer and ThreadSanitizer
9// run-time libraries.
10// Windows-specific implementation of symbolizer parts.
11//===----------------------------------------------------------------------===//
f35db108 12
ef1b3fda
KS
13#include "sanitizer_platform.h"
14#if SANITIZER_WINDOWS
f35db108
WM
15#include "sanitizer_symbolizer.h"
16
17namespace __sanitizer {
18
df77f0e4 19Symbolizer *Symbolizer::PlatformInit(const char *path_to_external) { return 0; }
e9772e16 20
f35db108
WM
21} // namespace __sanitizer
22
23#endif // _WIN32