Skip to content

Commit 2efd653

Browse files
committed
Handle review comments.
1 parent db45474 commit 2efd653

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flang/tools/flang-driver/driver.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ int main(int argc, const char **argv) {
111111
}
112112
}
113113

114-
llvm::StringSet<> SavedStrings;
114+
llvm::StringSet<> savedStrings;
115115
// Handle FCC_OVERRIDE_OPTIONS, used for editing a command line behind the
116116
// scenes.
117-
if (const char *OverrideStr = ::getenv("FCC_OVERRIDE_OPTIONS"))
118-
clang::driver::applyOverrideOptions(args, OverrideStr, SavedStrings,
117+
if (const char *overrideStr = ::getenv("FCC_OVERRIDE_OPTIONS"))
118+
clang::driver::applyOverrideOptions(args, overrideStr, savedStrings,
119119
"FCC_OVERRIDE_OPTIONS", &llvm::errs());
120120

121121
// Not in the frontend mode - continue in the compiler driver mode.

0 commit comments

Comments
 (0)