[clang][extract-api] Emit "navigator" property of "name" in SymbolGraph
[llvm-project.git] / compiler-rt / lib / dfsan / dfsan_chained_origin_depot.cpp
blob9ec598bf2ce9e418e53277e6f74b13b0350ec924
1 //===-- dfsan_chained_origin_depot.cpp ------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is a part of DataFlowSanitizer.
11 // A storage for chained origins.
12 //===----------------------------------------------------------------------===//
14 #include "dfsan_chained_origin_depot.h"
16 namespace __dfsan {
18 static ChainedOriginDepot chainedOriginDepot;
20 ChainedOriginDepot* GetChainedOriginDepot() { return &chainedOriginDepot; }
22 } // namespace __dfsan