Home
last modified time | relevance | path

Searched refs:DIAGOPT (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.def10 // must define the DIAGOPT macro to make use of this information.
18 #ifndef DIAGOPT
19 # error Define the DIAGOPT macro to handle language options
24 DIAGOPT(Name, Bits, Default)
29 DIAGOPT(Name, Bits, Default)
33 # define SEMANTIC_DIAGOPT(Name, Bits, Default) DIAGOPT(Name, Bits, Default)
47 DIAGOPT(NoRewriteMacros, 1, 0) /// -Wno-rewrite-macros
48 DIAGOPT(Pedantic, 1, 0) /// -pedantic
49 DIAGOPT(PedanticErrors, 1, 0) /// -pedantic-errors
50 DIAGOPT(ShowLine, 1, 1) /// Show line number on diagnostics.
[all …]
H A DDiagnosticOptions.h93 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits; macro
100 #define DIAGOPT(Name, Bits, Default) macro
133 #define DIAGOPT(Name, Bits, Default) macro
140 #define DIAGOPT(Name, Bits, Default) Name = Default; in DiagnosticOptions() macro
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendActions.cpp670 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name); in ReadDiagnosticOptions() macro
H A DCompilerInvocation.cpp4978 #define DIAGOPT(Name, Bits, Default) HBuilder.add(diagOpts.Name); in getModuleHash() macro
4982 #undef DIAGOPT in getModuleHash()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1322 #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name); in writeUnhashedControlBlock() macro
H A DASTReader.cpp6094 #define DIAGOPT(Name, Bits, Default) DiagOpts->Name = Record[Idx++]; in ParseDiagnosticOptions() macro