Searched refs:DIAGOPT (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticOptions.def | 10 // 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 D | DiagnosticOptions.h | 93 #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 D | FrontendActions.cpp | 670 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name); in ReadDiagnosticOptions() macro
|
H A D | CompilerInvocation.cpp | 4978 #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 D | ASTWriter.cpp | 1322 #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name); in writeUnhashedControlBlock() macro
|
H A D | ASTReader.cpp | 6094 #define DIAGOPT(Name, Bits, Default) DiagOpts->Name = Record[Idx++]; in ParseDiagnosticOptions() macro
|