Searched refs:CODEGENOPT (Results 1 – 3 of 3) sorted by relevance
/external/clang/include/clang/Frontend/ |
D | CodeGenOptions.def | 11 // must define the CODEGENOPT macro to make use of this information. 17 #ifndef CODEGENOPT 18 # error Define the CODEGENOPT macro to handle language options 23 CODEGENOPT(Name, Bits, Default) 28 CODEGENOPT(Name, Bits, Default) 31 CODEGENOPT(DisableIntegratedAS, 1, 0) ///< -no-integrated-as 32 CODEGENOPT(CompressDebugSections, 1, 0) ///< -Wa,-compress-debug-sections 33 CODEGENOPT(RelaxELFRelocations, 1, 0) ///< -Wa,--mrelax-relocations 34 CODEGENOPT(AsmVerbose , 1, 0) ///< -dA, -fverbose-asm. 35 CODEGENOPT(AssumeSaneOperatorNew , 1, 1) ///< implicit __attribute__((malloc)) operator new [all …]
|
D | CodeGenOptions.h | 32 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits; macro 37 #define CODEGENOPT(Name, Bits, Default) macro 215 #define CODEGENOPT(Name, Bits, Default) macro
|
/external/clang/lib/Frontend/ |
D | CodeGenOptions.cpp | 16 #define CODEGENOPT(Name, Bits, Default) Name = Default; in CodeGenOptions() macro
|