* gcc-interface/trans.c (Subprogram_Body_to_gnu): Initialize locus.
[official-gcc.git] / libsanitizer / asan / asan_activation.h
blob162a5ebcea98e0fefab75e7bce7ac4fc7a0177ff
1 //===-- asan_activation.h ---------------------------------------*- C++ -*-===//
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 AddressSanitizer, an address sanity checker.
9 //
10 // ASan activation/deactivation logic.
11 //===----------------------------------------------------------------------===//
13 #ifndef ASAN_ACTIVATION_H
14 #define ASAN_ACTIVATION_H
16 namespace __asan {
17 void AsanDeactivate();
18 void AsanActivate();
19 } // namespace __asan
21 #endif // ASAN_ACTIVATION_H