We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db45474 commit 2efd653Copy full SHA for 2efd653
flang/tools/flang-driver/driver.cpp
@@ -111,11 +111,11 @@ int main(int argc, const char **argv) {
111
}
112
113
114
- llvm::StringSet<> SavedStrings;
+ llvm::StringSet<> savedStrings;
115
// Handle FCC_OVERRIDE_OPTIONS, used for editing a command line behind the
116
// scenes.
117
- if (const char *OverrideStr = ::getenv("FCC_OVERRIDE_OPTIONS"))
118
- clang::driver::applyOverrideOptions(args, OverrideStr, SavedStrings,
+ if (const char *overrideStr = ::getenv("FCC_OVERRIDE_OPTIONS"))
+ clang::driver::applyOverrideOptions(args, overrideStr, savedStrings,
119
"FCC_OVERRIDE_OPTIONS", &llvm::errs());
120
121
// Not in the frontend mode - continue in the compiler driver mode.
0 commit comments