diff options
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | flang/lib/Frontend/CompilerInvocation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/flang/lib/Frontend/CompilerInvocation.cpp b/flang/lib/Frontend/CompilerInvocation.cpp index 4525130..2d8c9e3 100644 --- a/flang/lib/Frontend/CompilerInvocation.cpp +++ b/flang/lib/Frontend/CompilerInvocation.cpp @@ -565,7 +565,7 @@ bool CompilerInvocation::CreateFromArgs(CompilerInvocation &res, return success; } -void CompilerInvocation::collectMacroDefinitions() { +void CompilerInvocation::CollectMacroDefinitions() { auto &ppOpts = this->preprocessorOpts(); for (unsigned i = 0, n = ppOpts.macros.size(); i != n; ++i) { @@ -607,7 +607,7 @@ void CompilerInvocation::SetDefaultFortranOpts() { // TODO: When expanding this method, consider creating a dedicated API for // this. Also at some point we will need to differentiate between different // targets and add dedicated predefines for each. -void CompilerInvocation::setDefaultPredefinitions() { +void CompilerInvocation::SetDefaultPredefinitions() { auto &fortranOptions = fortranOpts(); const auto &frontendOptions = frontendOpts(); @@ -631,7 +631,7 @@ void CompilerInvocation::setDefaultPredefinitions() { } } -void CompilerInvocation::setFortranOpts() { +void CompilerInvocation::SetFortranOpts() { auto &fortranOptions = fortranOpts(); const auto &frontendOptions = frontendOpts(); const auto &preprocessorOptions = preprocessorOpts(); @@ -677,7 +677,7 @@ void CompilerInvocation::setFortranOpts() { } } -void CompilerInvocation::setSemanticsOpts( +void CompilerInvocation::SetSemanticsOpts( Fortran::parser::AllCookedSources &allCookedSources) { const auto &fortranOptions = fortranOpts(); |