From c7bf9d084d037aa6c8fd479be9ccdf963dc59e10 Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Thu, 22 Sep 2022 17:39:22 -0700 Subject: [PATCH] [bazel] Remove Mips from Exegesis cc_library definition Recent update added 'tools/llvm-exegesis/lib/Mips/*.cpp' to srcs for Exegesis cc_library. This was not needed, and in fact breaks things. This CL removes that one change. Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D134505 --- utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel index 6d97a37..031ffa8 100644 --- a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel @@ -2596,7 +2596,6 @@ cc_library( srcs = glob([ "tools/llvm-exegesis/lib/*.cpp", "tools/llvm-exegesis/lib/AArch64/*.cpp", - "tools/llvm-exegesis/lib/Mips/*.cpp", "tools/llvm-exegesis/lib/PowerPC/*.cpp", "tools/llvm-exegesis/lib/X86/*.cpp", "tools/llvm-exegesis/lib/X86/*.h", -- 2.7.4