freebsd-dev/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc

20 lines
659 B
C++
Raw Normal View History

//===-- sanitizer_persistent_allocator.cc -----------------------*- C++ -*-===//
2013-05-27 18:27:12 +00:00
//
// 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.
2013-05-27 18:27:12 +00:00
//===----------------------------------------------------------------------===//
#include "sanitizer_persistent_allocator.h"
2013-05-27 18:27:12 +00:00
namespace __sanitizer {
2013-05-27 18:27:12 +00:00
PersistentAllocator thePersistentAllocator;
2013-05-27 18:27:12 +00:00
} // namespace __sanitizer