1 //===-- dfsan_flags.h -------------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file is a part of DataFlowSanitizer.
12 //===----------------------------------------------------------------------===//
20 #define DFSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
21 #include "dfsan_flags.inc"
27 extern Flags flags_data
;
28 inline Flags
&flags() { return flags_data
; }
30 } // namespace __dfsan
32 #endif // DFSAN_FLAGS_H