mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
866e32ad33
From-SVN: r215527
18 lines
600 B
C++
18 lines
600 B
C++
//===-- sanitizer_persistent_allocator.cc -----------------------*- C++ -*-===//
|
|
//
|
|
// 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.
|
|
//===----------------------------------------------------------------------===//
|
|
#include "sanitizer_persistent_allocator.h"
|
|
|
|
namespace __sanitizer {
|
|
|
|
PersistentAllocator thePersistentAllocator;
|
|
|
|
} // namespace __sanitizer
|