PHASE 5: Additional rtx subclasses
[official-gcc.git] / libsanitizer / lsan / lsan.h
blob8a5030ce87814f83478d7fba9ec431362bb607fb
1 //=-- lsan.h --------------------------------------------------------------===//
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 a part of LeakSanitizer.
9 // Private header for standalone LSan RTL.
11 //===----------------------------------------------------------------------===//
13 #include "sanitizer_common/sanitizer_flags.h"
14 #include "sanitizer_common/sanitizer_stacktrace.h"
16 namespace __lsan {
18 void InitializeInterceptors();
20 } // namespace __lsan
22 extern bool lsan_inited;
23 extern bool lsan_init_is_running;
25 extern "C" void __lsan_init();