summaryrefslogtreecommitdiff
path: root/include/clang/Driver
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-11-09 20:07:19 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-11-09 20:07:19 +0000
commitbd3952758ce828a006d826979db642195792ac4d (patch)
treecf19c90403ad3b4489fb4b65f28a72524b1f0367 /include/clang/Driver
parent1cc766fb3e62fedc5d99b103bcd0ec4aa3146859 (diff)
downloadclang-bd3952758ce828a006d826979db642195792ac4d.tar.gz
This reverts commit r194330, r194329 and r194328.
The test was still failing on OS X and mingw. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Driver')
-rw-r--r--include/clang/Driver/Options.td3
-rw-r--r--include/clang/Driver/ToolChain.h3
2 files changed, 1 insertions, 5 deletions
diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td
index 45a46e267b..faaaee1e93 100644
--- a/include/clang/Driver/Options.td
+++ b/include/clang/Driver/Options.td
@@ -1434,8 +1434,7 @@ def fprofile_dir : Joined<["-"], "fprofile-dir=">, Group<clang_ignored_f_Group>;
defm profile_use : BooleanFFlag<"profile-use">, Group<clang_ignored_f_Group>;
def fprofile_use_EQ : Joined<["-"], "fprofile-use=">, Group<clang_ignored_f_Group>;
-def fuse_ld_EQ : Joined<["-", "--"], "fuse-ld=">, Group<f_Group>,
- HelpText<"The suffix of the linker to use (e.g. bfd for ld.bfd).">;
+def fuse_ld_EQ : Joined<["-"], "fuse-ld=">, Group<clang_ignored_f_Group>;
defm align_functions : BooleanFFlag<"align-functions">, Group<clang_ignored_f_Group>;
def falign_functions_EQ : Joined<["-"], "falign-functions=">, Group<clang_ignored_f_Group>;
diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h
index a0d757c46f..12bce286b9 100644
--- a/include/clang/Driver/ToolChain.h
+++ b/include/clang/Driver/ToolChain.h
@@ -126,9 +126,6 @@ public:
path_list &getProgramPaths() { return ProgramPaths; }
const path_list &getProgramPaths() const { return ProgramPaths; }
- /// Returns the linker path, respecting the -fuse-ld= argument to determine
- /// the linker suffix or name.
- std::string GetLinkerPath() const;
const SanitizerArgs& getSanitizerArgs() const;