Home | History | Annotate | Line # | Download | only in sanitizer_common
      1 //===-- sancov_flags.inc ----------------------------------------*- C++ -*-===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 //
     10 // Sanitizer Coverage runtime flags.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 #ifndef SANCOV_FLAG
     14 #error "Defnine SANCOV_FLAG prior to including this file!"
     15 #endif
     16 
     17 SANCOV_FLAG(bool, symbolize, true,
     18             "If set, converage information will be symbolized by sancov tool "
     19             "after dumping.")
     20 
     21 SANCOV_FLAG(bool, help, false, "Print flags help.")
     22