diff options
Diffstat (limited to 'contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp')
| -rw-r--r-- | contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp | 45 | 
1 files changed, 0 insertions, 45 deletions
diff --git a/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp b/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp deleted file mode 100644 index 768ebaa1c980..000000000000 --- a/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp +++ /dev/null @@ -1,45 +0,0 @@ -//===- ModuleSubstream.cpp --------------------------------------*- 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/CodeView/ModuleSubstream.h" - -#include "llvm/DebugInfo/MSF/StreamReader.h" - -using namespace llvm; -using namespace llvm::codeview; -using namespace llvm::msf; - -ModuleSubstream::ModuleSubstream() : Kind(ModuleSubstreamKind::None) {} - -ModuleSubstream::ModuleSubstream(ModuleSubstreamKind Kind, -                                 ReadableStreamRef Data) -    : Kind(Kind), Data(Data) {} - -Error ModuleSubstream::initialize(ReadableStreamRef Stream, -                                  ModuleSubstream &Info) { -  const ModuleSubsectionHeader *Header; -  StreamReader Reader(Stream); -  if (auto EC = Reader.readObject(Header)) -    return EC; - -  ModuleSubstreamKind Kind = -      static_cast<ModuleSubstreamKind>(uint32_t(Header->Kind)); -  if (auto EC = Reader.readStreamRef(Info.Data, Header->Length)) -    return EC; -  Info.Kind = Kind; -  return Error::success(); -} - -uint32_t ModuleSubstream::getRecordLength() const { -  return sizeof(ModuleSubsectionHeader) + Data.getLength(); -} - -ModuleSubstreamKind ModuleSubstream::getSubstreamKind() const { return Kind; } - -ReadableStreamRef ModuleSubstream::getRecordData() const { return Data; }  | 
