svn commit: r339743 - projects/clang700-import/contrib/llvm/tools/lld/ELF

Dimitry Andric dim at FreeBSD.org
Thu Oct 25 20:44:15 UTC 2018


Author: dim
Date: Thu Oct 25 20:44:14 2018
New Revision: 339743
URL: https://svnweb.freebsd.org/changeset/base/339743

Log:
  Add interpose flag, introduced in head r342239, to the list of checked
  flag names.

Modified:
  projects/clang700-import/contrib/llvm/tools/lld/ELF/Driver.cpp

Modified: projects/clang700-import/contrib/llvm/tools/lld/ELF/Driver.cpp
==============================================================================
--- projects/clang700-import/contrib/llvm/tools/lld/ELF/Driver.cpp	Thu Oct 25 19:57:42 2018	(r339742)
+++ projects/clang700-import/contrib/llvm/tools/lld/ELF/Driver.cpp	Thu Oct 25 20:44:14 2018	(r339743)
@@ -339,7 +339,7 @@ static bool getZFlag(opt::InputArgList &Args, StringRe
 static bool isKnown(StringRef S) {
   return S == "combreloc" || S == "copyreloc" || S == "defs" ||
          S == "execstack" || S == "hazardplt" || S == "ifunc-noplt" ||
-         S == "initfirst" ||
+         S == "initfirst" || S == "interpose" ||
          S == "keep-text-section-prefix" || S == "lazy" || S == "muldefs" ||
          S == "nocombreloc" || S == "nocopyreloc" || S == "nodelete" ||
          S == "nodlopen" || S == "noexecstack" ||


More information about the svn-src-projects mailing list