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 120423a commit 6ed30e6Copy full SHA for 6ed30e6
clang/lib/Driver/ToolChain.cpp
@@ -937,7 +937,8 @@ ToolChain::getTargetSubDirPath(StringRef BaseDir) const {
937
938
// On AIX, the environment component is not used in the target sub dir name.
939
if (T.isOSAIX() && T.hasEnvironment()) {
940
- llvm::Triple AIXTriple(T.getArchName(), T.getVendorName(), llvm::Triple::getOSTypeName(T.getOS()));
+ llvm::Triple AIXTriple(T.getArchName(), T.getVendorName(),
941
+ llvm::Triple::getOSTypeName(T.getOS()));
942
if (auto Path = getPathForTriple(AIXTriple))
943
return *Path;
944
}
0 commit comments