File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed
clang/include/clang/Driver Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -565,18 +565,6 @@ class Driver {
565
565
return IsOffload ? OffloadLTOMode : LTOMode;
566
566
}
567
567
568
- // / Addition for Swift. Allows ClangImporter to extract the path to libstdc++.
569
- std::vector<std::string>
570
- getLibStdCxxIncludePaths (const llvm::opt::ArgList &DriverArgs,
571
- const llvm::Triple &Target) const {
572
- llvm::opt::ArgStringList ArgStrings;
573
- getToolChain (DriverArgs, Target)
574
- .addLibStdCxxIncludePaths (DriverArgs, ArgStrings);
575
- unsigned Unused1, Unused2;
576
- auto ParsedArgs = getOpts ().ParseArgs (ArgStrings, Unused1, Unused2);
577
- return ParsedArgs.getAllArgValues (options::OPT_internal_isystem);
578
- }
579
-
580
568
private:
581
569
582
570
// / Tries to load options from configuration file.
Original file line number Diff line number Diff line change @@ -225,11 +225,6 @@ class ToolChain {
225
225
llvm::vfs::FileSystem &getVFS () const ;
226
226
const llvm::Triple &getTriple () const { return Triple; }
227
227
228
- // / Addition for Swift. Allows ClangImporter to extract the path to libstdc++.
229
- virtual void
230
- addLibStdCxxIncludePaths (const llvm::opt::ArgList &DriverArgs,
231
- llvm::opt::ArgStringList &CC1Args) const {};
232
-
233
228
// / Get the toolchain's aux triple, if it has one.
234
229
// /
235
230
// / Exactly what the aux triple represents depends on the toolchain, but for
You can’t perform that action at this time.
0 commit comments