diff options
author | Zachary Turner <zturner@google.com> | 2015-02-06 20:00:18 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-06 20:00:18 +0000 |
commit | 8c89a82c880112d12f5163926ae26b7c7f3f0b11 (patch) | |
tree | 042480014aa4919ddcd04ed9a21dc232570745ac /llvm/lib/DebugInfo/PDB/PDB.cpp | |
parent | 8379068941f08e89822c3245369ed52c45bc8a5e (diff) | |
download | llvm-8c89a82c880112d12f5163926ae26b7c7f3f0b11.zip llvm-8c89a82c880112d12f5163926ae26b7c7f3f0b11.tar.gz llvm-8c89a82c880112d12f5163926ae26b7c7f3f0b11.tar.bz2 |
Revert "Create lib/DebugInfo/PDB."
This reverts commit 21028, as it is causing failures in LLVMConfig.
llvm-svn: 228431
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/PDB.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/PDB.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/llvm/lib/DebugInfo/PDB/PDB.cpp b/llvm/lib/DebugInfo/PDB/PDB.cpp deleted file mode 100644 index e80beee..0000000 --- a/llvm/lib/DebugInfo/PDB/PDB.cpp +++ /dev/null @@ -1,21 +0,0 @@ -//===- PDB.cpp - base header file for creating a PDB reader -----*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "llvm/ADT/StringRef.h" - -#include "llvm/DebugInfo/PDB/PDB.h" -#include "llvm/DebugInfo/PDB/IPDBSession.h" - -using namespace llvm; - -std::unique_ptr<IPDBSession> llvm::createPDBReader(PDB_ReaderType Type, - StringRef Path) { - // Create the correct concrete instance type based on the value of Type. - return nullptr; -} |