brintos

brintos / llvm-project-archived public Read only

0
0
Text · 777 B · be65c8e Raw
21 lines · plain
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-exception6//7//===----------------------------------------------------------------------===//8//9// TySan runtime flags.10//11//===----------------------------------------------------------------------===//12#ifndef TYSAN_FLAG13#error "Define TYSAN_FLAG prior to including this file!"14#endif15 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