Path: blob/main/contrib/llvm-project/compiler-rt/lib/msan/msan_flags.h
35262 views
//===-- msan_flags.h --------------------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file is a part of MemorySanitizer.9//10//===----------------------------------------------------------------------===//11#ifndef MSAN_FLAGS_H12#define MSAN_FLAGS_H1314namespace __msan {1516struct Flags {17#define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;18#include "msan_flags.inc"19#undef MSAN_FLAG2021void SetDefaults();22};2324Flags *flags();2526} // namespace __msan2728#endif // MSAN_FLAGS_H293031