[lld] 7f9c264 - [lld/COFF] Ignore `/ASSEMBLYDEBUG[:NONE]` and `/EMITPOGOPHASEINFO`

Hans Wennborg via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 3 11:41:58 PDT 2022


Author: oberrich
Date: 2022-10-03T20:38:36+02:00
New Revision: 7f9c264b3c7f7806fac1028f604abb2c57ced3b8

URL: https://github.com/llvm/llvm-project/commit/7f9c264b3c7f7806fac1028f604abb2c57ced3b8
DIFF: https://github.com/llvm/llvm-project/commit/7f9c264b3c7f7806fac1028f604abb2c57ced3b8.diff

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

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

Differential revision: https://reviews.llvm.org/D135033

Added: 
    

Modified: 
    lld/COFF/Options.td

Removed: 
    


################################################################################
diff  --git a/lld/COFF/Options.td b/lld/COFF/Options.td
index a2eb551a75804..fb4c65ef074b0 100644
--- a/lld/COFF/Options.td
+++ b/lld/COFF/Options.td
@@ -297,18 +297,21 @@ def summary : F<"summary">;
 
 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">;


        


More information about the llvm-commits mailing list