[PATCH] D13097: [ELF2] - added ignored command line options for compatibility

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 23 07:21:59 PDT 2015


grimar created this revision.
grimar added a reviewer: rafael.
grimar added subscribers: grimar, llvm-commits.
grimar added a project: lld.

Just added few ignored options.

http://reviews.llvm.org/D13097

Files:
  Options.td

Index: Options.td
===================================================================
--- Options.td
+++ Options.td
@@ -19,11 +19,27 @@
 def discard_all : Flag<["-"], "discard-all">,
      HelpText<"Delete all local symbols">;
 
-def alias_discard_all: Flag<["-"], "x">,
+def alias_discard_all : Flag<["-"], "x">,
      Alias<discard_all>;
 
 def discard_locals : Flag<["-"], "discard-locals">,
      HelpText<"Delete temporary local symbols">;
 
-def alias_discard_locals: Flag<["-"], "X">,
+def alias_discard_locals : Flag<["-"], "X">,
      Alias<discard_locals>;
+
+//===----------------------------------------------------------------------===//
+/// Ignored options
+//===----------------------------------------------------------------------===//
+
+def dashg : Flag<["-"], "g">,
+     HelpText<"Ignored.">;
+
+def Qy : Flag<["-"], "Qy">,
+     HelpText<"Ignored for SVR4 Compatibility">;
+
+def qmagic : Flag<["-"], "qmagic">,
+     HelpText<"Ignored for Linux Compatibility">;
+
+def sunassert : Flag<["-"], "assert">,
+     HelpText<"Ignored for SunOS Compatibility">;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13097.35495.patch
Type: text/x-patch
Size: 1108 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150923/3b248106/attachment.bin>


More information about the llvm-commits mailing list