Skip to content

Commit 27496fe

Browse files
committed
Fixing format.
1 parent a553581 commit 27496fe

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

clang/lib/Driver/ToolChains/AIX.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,8 +625,8 @@ void AIX::addFortranRuntimeLibs(const ArgList &Args,
625625
llvm::opt::ArgStringList &CmdArgs) const {
626626
// Link flang_rt.runtime.a. On AIX, the static and shared library are all
627627
// named .a
628-
CmdArgs.push_back(getCompilerRTArgString(
629-
Args, "runtime", ToolChain::FT_Static, true));
628+
CmdArgs.push_back(
629+
getCompilerRTArgString(Args, "runtime", ToolChain::FT_Static, true));
630630
}
631631

632632
ToolChain::CXXStdlibType AIX::GetDefaultCXXStdlibType() const {

clang/lib/Driver/ToolChains/PPCLinux.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,8 @@ void PPCLinuxToolChain::addFortranRuntimeLibs(
107107
const ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const {
108108
// Link static flang_rt.runtime.a or shared flang_rt.runtime.so
109109
const char *Path;
110-
if (getVFS().exists(Twine(
111-
Path = getCompilerRTArgString(Args, "runtime", ToolChain::FT_Static,
112-
true))))
110+
if (getVFS().exists(Twine(Path = getCompilerRTArgString(
111+
Args, "runtime", ToolChain::FT_Static, true))))
113112
CmdArgs.push_back(Path);
114113
else if (getVFS().exists(
115114
Twine(Path = getCompilerRTArgString(

0 commit comments

Comments
 (0)