diff options
author | Rui Ueyama <ruiu@google.com> | 2013-07-25 22:46:49 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-07-25 22:46:49 +0000 |
commit | dc6983ca13a32c3397ec4a75c02c4707f1d0d207 (patch) | |
tree | fd28ed35914ec3f2785fd6e0584780af2c2a493b /lld/lib/Driver/WinLinkOptions.td | |
parent | 50e67c7371a2449f10c17a06ccb4d16e890e3ed1 (diff) | |
download | bcm5719-llvm-dc6983ca13a32c3397ec4a75c02c4707f1d0d207.tar.gz bcm5719-llvm-dc6983ca13a32c3397ec4a75c02c4707f1d0d207.zip |
[PECOFF][Driver] Add /nologo command line option.
llvm-svn: 187162
Diffstat (limited to 'lld/lib/Driver/WinLinkOptions.td')
-rw-r--r-- | lld/lib/Driver/WinLinkOptions.td | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lld/lib/Driver/WinLinkOptions.td b/lld/lib/Driver/WinLinkOptions.td index 1456a6bd70e..ca42291177e 100644 --- a/lld/lib/Driver/WinLinkOptions.td +++ b/lld/lib/Driver/WinLinkOptions.td @@ -63,5 +63,8 @@ def incl_c : _Joined<"include:", incl>; def failifmismatch : _Separate<"failifmismatch">; def failifmismatch_c : _Joined<"failifmismatch:", failifmismatch>; +// NOLOGO does nothing. It is defined only for link.exe compatibility. +def nologo : _Flag<"nologo">; + def help : _Flag<"help">; def help_q : _Flag<"?">, Alias<help>; |