]> git.proxmox.com Git - rustc.git/blame - src/compiler-rt/lib/msan/msan_flags.h
New upstream version 1.19.0+dfsg3
[rustc.git] / src / compiler-rt / lib / msan / msan_flags.h
CommitLineData
1a4d82fc
JJ
1//===-- msan_flags.h --------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of MemorySanitizer.
11//
1a4d82fc
JJ
12//===----------------------------------------------------------------------===//
13#ifndef MSAN_FLAGS_H
14#define MSAN_FLAGS_H
15
16namespace __msan {
17
1a4d82fc 18struct Flags {
92a42be0
SL
19#define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
20#include "msan_flags.inc"
21#undef MSAN_FLAG
22
23 void SetDefaults();
1a4d82fc
JJ
24};
25
26Flags *flags();
27
28} // namespace __msan
29
30#endif // MSAN_FLAGS_H