diff options
Diffstat (limited to 'lib/msan/msan_flags.h')
-rw-r--r-- | lib/msan/msan_flags.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/msan/msan_flags.h b/lib/msan/msan_flags.h deleted file mode 100644 index 4fc6d172a04a7..0000000000000 --- a/lib/msan/msan_flags.h +++ /dev/null @@ -1,30 +0,0 @@ -//===-- msan_flags.h --------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file is a part of MemorySanitizer. -// -//===----------------------------------------------------------------------===// -#ifndef MSAN_FLAGS_H -#define MSAN_FLAGS_H - -namespace __msan { - -struct Flags { -#define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; -#include "msan_flags.inc" -#undef MSAN_FLAG - - void SetDefaults(); -}; - -Flags *flags(); - -} // namespace __msan - -#endif // MSAN_FLAGS_H |