diff options
author | Rui Ueyama <ruiu@google.com> | 2013-12-26 06:00:26 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-12-26 06:00:26 +0000 |
commit | 610d90b2835a77e1e832bf321f2962956fd886f7 (patch) | |
tree | cc2c1845d4acf4ab52a2556d25ae704551e173bf | |
parent | a554968ddeee931cd7be92f7325ad514ddaeb0d4 (diff) | |
download | bcm5719-llvm-610d90b2835a77e1e832bf321f2962956fd886f7.tar.gz bcm5719-llvm-610d90b2835a77e1e832bf321f2962956fd886f7.zip |
[PECOFF] Do not accept "/include <string>" option.
Command line argument separator on Windows is colon. We used to accept space
as a separator, but we removed most of the code for that. This patch is to
delete the remaining code.
llvm-svn: 198032
-rw-r--r-- | lld/lib/Driver/WinLinkOptions.td | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lld/lib/Driver/WinLinkOptions.td b/lld/lib/Driver/WinLinkOptions.td index 1a77e29ae48..aac968579a0 100644 --- a/lld/lib/Driver/WinLinkOptions.td +++ b/lld/lib/Driver/WinLinkOptions.td @@ -49,7 +49,6 @@ def manifestdependency : P<"manifestdependency", // a reserved keyword in tablegen. def incl : Joined<["/", "-"], "include:">, HelpText<"Force symbol to be added to symbol table as undefined one">; -def incl_c : Separate<["/", "-"], "include">, Alias<incl>; def nodefaultlib_all : F<"nodefaultlib">; def noentry : F<"noentry">; |