Home
last modified time | relevance | path

Searched refs:UBSAN_FLAG (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_flags.inc12 #ifndef UBSAN_FLAG
13 # error "Define UBSAN_FLAG prior to including this file!"
16 // UBSAN_FLAG(Type, Name, DefaultValue, Description)
19 UBSAN_FLAG(bool, halt_on_error, false,
21 UBSAN_FLAG(bool, print_stacktrace, false,
23 UBSAN_FLAG(const char *, suppressions, "", "Suppressions file name.")
24 UBSAN_FLAG(bool, report_error_type, false,
26 UBSAN_FLAG(bool, silence_unsigned_overflow, false,
H A Dubsan_flags.cpp36 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro
38 #undef UBSAN_FLAG in SetDefaults()
42 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterUbsanFlags() macro
45 #undef UBSAN_FLAG in RegisterUbsanFlags()
H A Dubsan_flags.h24 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
26 #undef UBSAN_FLAG