aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-12-10 22:10:25 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-12-10 22:10:25 +0000
commita9365f4a1739c01c15667d2310dc5311809ab6c4 (patch)
treeb1706d36e0bbec54c02d2cf6ee97df0cfc699f7d
parent5773ac113c5c364ed1f0af12b97b2c3b058e1ee2 (diff)
downloadsrc-a9365f4a1739c01c15667d2310dc5311809ab6c4.tar.gz
src-a9365f4a1739c01c15667d2310dc5311809ab6c4.zip
Add a few missed source files to libllvm, for the MK_LLVM_TARGET_BPF=yes
case. Otherwise, linking of clang and other llvm based executables would complain about missing symbols. Reported by: rstone MFC after: 1 month X-MFC-With: r353358
Notes
Notes: svn path=/head/; revision=355602
-rw-r--r--lib/clang/libllvm/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/clang/libllvm/Makefile b/lib/clang/libllvm/Makefile
index 754a8c0ea144..aa9fc2a37a17 100644
--- a/lib/clang/libllvm/Makefile
+++ b/lib/clang/libllvm/Makefile
@@ -1046,6 +1046,7 @@ SRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp
.endif # MK_LLVM_TARGET_ARM
.if ${MK_LLVM_TARGET_BPF} != "no"
SRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp
+SRCS_MIN+= Target/BPF/BPFAbstractMemberAccess.cpp
SRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp
SRCS_MIN+= Target/BPF/BPFFrameLowering.cpp
SRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp
@@ -1054,6 +1055,7 @@ SRCS_MIN+= Target/BPF/BPFInstrInfo.cpp
SRCS_MIN+= Target/BPF/BPFMCInstLower.cpp
SRCS_MIN+= Target/BPF/BPFMIChecking.cpp
SRCS_MIN+= Target/BPF/BPFMIPeephole.cpp
+SRCS_MIN+= Target/BPF/BPFMISimplifyPatchable.cpp
SRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp
SRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp
SRCS_MIN+= Target/BPF/BPFSubtarget.cpp