From 0442a12a80e6ec487a6f49bc8b991bee8445f592 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 26 Nov 2018 15:54:36 +0000 Subject: [PATCH] Remove an unnecessary file; NFC. This source file has not been needed since r346522 and was triggering diagnostics in MSVC about an object file which exports no public symbols (LNK4221). llvm-svn: 347565 --- llvm/lib/CodeGen/CMakeLists.txt | 1 - llvm/lib/CodeGen/MachinePassRegistry.cpp | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100644 llvm/lib/CodeGen/MachinePassRegistry.cpp diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index 6a091ed..e76f9f8 100644 --- a/llvm/lib/CodeGen/CMakeLists.txt +++ b/llvm/lib/CodeGen/CMakeLists.txt @@ -84,7 +84,6 @@ add_llvm_library(LLVMCodeGen MachineOperand.cpp MachineOptimizationRemarkEmitter.cpp MachineOutliner.cpp - MachinePassRegistry.cpp MachinePipeliner.cpp MachinePostDominators.cpp MachineRegionInfo.cpp diff --git a/llvm/lib/CodeGen/MachinePassRegistry.cpp b/llvm/lib/CodeGen/MachinePassRegistry.cpp deleted file mode 100644 index 82daf80..0000000 --- a/llvm/lib/CodeGen/MachinePassRegistry.cpp +++ /dev/null @@ -1,17 +0,0 @@ -//===-- CodeGen/MachineInstr.cpp ------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file contains the machine function pass registry for register allocators -// and instruction schedulers. -// -//===----------------------------------------------------------------------===// - -#include "llvm/CodeGen/MachinePassRegistry.h" - -using namespace llvm; -- 2.7.4