diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2018-11-26 15:54:36 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2018-11-26 15:54:36 +0000 |
commit | 0442a12a80e6ec487a6f49bc8b991bee8445f592 (patch) | |
tree | fda40f4832153f6adec4082ace9b9b81c585228d | |
parent | 17d39677e015e8c4398949dd089dfd3fab136222 (diff) | |
download | bcm5719-llvm-0442a12a80e6ec487a6f49bc8b991bee8445f592.tar.gz bcm5719-llvm-0442a12a80e6ec487a6f49bc8b991bee8445f592.zip |
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
-rw-r--r-- | llvm/lib/CodeGen/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/MachinePassRegistry.cpp | 17 |
2 files changed, 0 insertions, 18 deletions
diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index 6a091ed9462..e76f9f8ed4e 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 82daf80a875..00000000000 --- 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; |