[flang][driver] Remove newline in CompilerInvocation

Remove a new line in CompilerInvocation, to now follow the style when clang-format is applied.
This commit is contained in:
Faris Rehman 2021-01-25 11:58:52 +00:00
parent f461e35cba
commit 8e3adda820
1 changed files with 1 additions and 2 deletions

View File

@ -191,8 +191,7 @@ bool CompilerInvocation::CreateFromArgs(CompilerInvocation &res,
// Parse the arguments
const llvm::opt::OptTable &opts = clang::driver::getDriverOptTable();
const unsigned includedFlagsBitmask =
clang::driver::options::FC1Option;
const unsigned includedFlagsBitmask = clang::driver::options::FC1Option;
unsigned missingArgIndex, missingArgCount;
llvm::opt::InputArgList args = opts.ParseArgs(
commandLineArgs, missingArgIndex, missingArgCount, includedFlagsBitmask);