diff options
Diffstat (limited to 'contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.cpp')
-rw-r--r-- | contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.cpp b/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.cpp new file mode 100644 index 000000000000..875a2b0c1c57 --- /dev/null +++ b/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.cpp @@ -0,0 +1,17 @@ +//===-- release.cpp ---------------------------------------------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "release.h" + +namespace scudo { + +BufferPool<RegionPageMap::StaticBufferCount, + RegionPageMap::StaticBufferNumElements> + RegionPageMap::Buffers; + +} // namespace scudo |