1//===-- tysan_flags.inc ---------------------------------------*- 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// TySan runtime flags.
10//
11//===----------------------------------------------------------------------===//
12#ifndef TYSAN_FLAG
13#error "Define TYSAN_FLAG prior to including this file!"
14#endif
15
16// TYSAN_FLAG(Type, Name, DefaultValue, Description)
17// See COMMON_FLAG in sanitizer_flags.inc for more details.
18
19TYSAN_FLAG(bool, print_stacktrace, false,
20 "Include full stacktrace into an error report")
21