1219820Sjeff//===-- dfsan_chained_origin_depot.cpp ------------------------------------===//
2219820Sjeff//
3219820Sjeff// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4219820Sjeff// See https://llvm.org/LICENSE.txt for license information.
5219820Sjeff// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6219820Sjeff//
7219820Sjeff//===----------------------------------------------------------------------===//
8219820Sjeff//
9219820Sjeff// This file is a part of DataFlowSanitizer.
10219820Sjeff//
11219820Sjeff// A storage for chained origins.
12219820Sjeff//===----------------------------------------------------------------------===//
13219820Sjeff
14219820Sjeff#include "dfsan_chained_origin_depot.h"
15219820Sjeff
16219820Sjeffnamespace __dfsan {
17219820Sjeff
18219820Sjeffstatic ChainedOriginDepot chainedOriginDepot;
19219820Sjeff
20219820SjeffChainedOriginDepot* GetChainedOriginDepot() { return &chainedOriginDepot; }
21219820Sjeff
22219820Sjeff}  // namespace __dfsan
23219820Sjeff