[lld] r198032 - [PECOFF] Do not accept "/include <string>" option.
Rui Ueyama
ruiu at google.com
Wed Dec 25 22:00:28 PST 2013
Author: ruiu
Date: Thu Dec 26 00:00:26 2013
New Revision: 198032
URL: http://llvm.org/viewvc/llvm-project?rev=198032&view=rev
Log:
[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.
Modified:
lld/trunk/lib/Driver/WinLinkOptions.td
Modified: lld/trunk/lib/Driver/WinLinkOptions.td
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Driver/WinLinkOptions.td?rev=198032&r1=198031&r2=198032&view=diff
==============================================================================
--- lld/trunk/lib/Driver/WinLinkOptions.td (original)
+++ lld/trunk/lib/Driver/WinLinkOptions.td Thu Dec 26 00:00:26 2013
@@ -49,7 +49,6 @@ def manifestdependency : P<"manifestdepe
// 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">;
More information about the llvm-commits
mailing list