[PATCH] D135033: [lld/COFF] Ignore `/ASSEMBLYDEBUG[:NONE]` and `/EMITPOGOPHASEINFO`

Richard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 2 07:32:28 PDT 2022


oberrich created this revision.
oberrich added a project: lld.
Herald added a project: All.
oberrich requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Adds aforementioned `link` switches in `lld-link` and ignores them.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D135033

Files:
  lld/COFF/Options.td


Index: lld/COFF/Options.td
===================================================================
--- lld/COFF/Options.td
+++ lld/COFF/Options.td
@@ -297,18 +297,21 @@
 
 def ignoreidl : F<"ignoreidl">;
 def ltcg : F<"ltcg">;
+def assemblydebug : F<"assemblydebug">;
 def nologo : F<"nologo">;
 def throwingnew : F<"throwingnew">;
 def editandcontinue : F<"editandcontinue">;
 def fastfail : F<"fastfail">;
 def kernel : F<"kernel">;
 def pdbcompress : F<"pdbcompress">;
+def emitpogophaseinfo : F<"emitpogophaseinfo">;
 
 def delay : P_priv<"delay">;
 def errorreport : P_priv<"errorreport">;
 def idlout : P_priv<"idlout">;
 def ilk : P_priv<"ilk">;
 def ltcg_opt : P_priv<"ltcg">;
+def assemblydebug_opt : P_priv<"assemblydebug">;
 def ltcgout : P_priv<"ltcgout">;
 def maxilksize : P_priv<"maxilksize">;
 def tlbid : P_priv<"tlbid">;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135033.464552.patch
Type: text/x-patch
Size: 835 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221002/124f936e/attachment.bin>


More information about the llvm-commits mailing list