tra added inline comments.
================ Comment at: clang/lib/Driver/ToolChains/CommonArgs.cpp:1599-1618 + // For bitcode SDL, search for these 12 relative SDL filenames + SDLs.push_back( + Twine("/libdevice/libbc-" + Lib + "-" + Arch + "-" + Target + ".a") + .str()); + SDLs.push_back( + Twine("/libbc-" + Lib + "-" + Arch + "-" + Target + ".a").str()); + SDLs.push_back(Twine("/libdevice/libbc-" + Lib + "-" + Arch + ".a").str()); ---------------- This could probably be collapsed into a couple of nested loops: ``` for (auto base: {"/libbc-", "/lib"}) { std::string ext = base == "/lib" ? ".bc" : ".a"; for( auto suffix : {Lib + "-" + Arch + "-" + Target, Lib + "-" + Arch, Lib } }) { SDLs.append({"/libdevice" + base + suffix + ext, base + suffix + ext }) } } ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D105191/new/ https://reviews.llvm.org/D105191 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits