[docs] Update HowToReleaseLLVM documentation.
[llvm-project.git] / compiler-rt / lib / msan / msan_flags.h
blob836dbbaa164a77ea9b5b130529c5729d5f9b6c3c
1 //===-- msan_flags.h --------------------------------------------*- C++ -*-===//
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 MemorySanitizer.
11 //===----------------------------------------------------------------------===//
12 #ifndef MSAN_FLAGS_H
13 #define MSAN_FLAGS_H
15 namespace __msan {
17 struct Flags {
18 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
19 #include "msan_flags.inc"
20 #undef MSAN_FLAG
22 void SetDefaults();
25 Flags *flags();
27 } // namespace __msan
29 #endif // MSAN_FLAGS_H