Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Oct 2018 20:44:14 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r339743 - projects/clang700-import/contrib/llvm/tools/lld/ELF
Message-ID:  <201810252044.w9PKiEC7039768@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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" ||



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810252044.w9PKiEC7039768>