Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
cfe/trunk/include/clang/Frontend/FrontendOptions.h
Show First 20 Lines • Show All 429 Lines • ▼ Show 20 Lines | public: | ||||
/// File name of the file that will provide record layouts | /// File name of the file that will provide record layouts | ||||
/// (in the format produced by -fdump-record-layouts). | /// (in the format produced by -fdump-record-layouts). | ||||
std::string OverrideRecordLayoutsFile; | std::string OverrideRecordLayoutsFile; | ||||
/// Auxiliary triple for CUDA compilation. | /// Auxiliary triple for CUDA compilation. | ||||
std::string AuxTriple; | std::string AuxTriple; | ||||
/// If non-empty, search the pch input file as if it was a header | |||||
/// included by this file. | |||||
std::string FindPchSource; | |||||
/// Filename to write statistics to. | /// Filename to write statistics to. | ||||
std::string StatsFile; | std::string StatsFile; | ||||
public: | public: | ||||
FrontendOptions() | FrontendOptions() | ||||
: DisableFree(false), RelocatablePCH(false), ShowHelp(false), | : DisableFree(false), RelocatablePCH(false), ShowHelp(false), | ||||
ShowStats(false), ShowTimers(false), ShowVersion(false), | ShowStats(false), ShowTimers(false), ShowVersion(false), | ||||
FixWhatYouCan(false), FixOnlyWarnings(false), FixAndRecompile(false), | FixWhatYouCan(false), FixOnlyWarnings(false), FixAndRecompile(false), | ||||
Show All 17 Lines |