diff options
Diffstat (limited to 'llvm/lib/DebugInfo/Msf/IndexedStreamData.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/Msf/IndexedStreamData.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/llvm/lib/DebugInfo/Msf/IndexedStreamData.cpp b/llvm/lib/DebugInfo/Msf/IndexedStreamData.cpp deleted file mode 100644 index 81303aeb8f4..00000000000 --- a/llvm/lib/DebugInfo/Msf/IndexedStreamData.cpp +++ /dev/null @@ -1,25 +0,0 @@ -//===- IndexedStreamData.cpp - Standard PDB Stream Data ---------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "llvm/DebugInfo/Msf/IndexedStreamData.h" -#include "llvm/DebugInfo/Msf/IMsfFile.h" - -using namespace llvm; -using namespace llvm::msf; - -IndexedStreamData::IndexedStreamData(uint32_t StreamIdx, const IMsfFile &File) - : StreamIdx(StreamIdx), File(File) {} - -uint32_t IndexedStreamData::getLength() { - return File.getStreamByteSize(StreamIdx); -} - -ArrayRef<support::ulittle32_t> IndexedStreamData::getStreamBlocks() { - return File.getStreamBlockList(StreamIdx); -} |