testsuite: Fix bind_c_array_params_2.f90 on AIX
[official-gcc.git] / libsanitizer / hwasan / hwasan_flags.h
blob0a6998f675d69b0c75b6b5cab207f59d1c41ab32
1 //===-- hwasan_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 HWAddressSanitizer.
11 //===----------------------------------------------------------------------===//
12 #ifndef HWASAN_FLAGS_H
13 #define HWASAN_FLAGS_H
15 namespace __hwasan {
17 struct Flags {
18 #define HWASAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
19 #include "hwasan_flags.inc"
20 #undef HWASAN_FLAG
22 void SetDefaults();
25 Flags *flags();
27 } // namespace __hwasan
29 #endif // HWASAN_FLAGS_H