1 //===- PDBSymbolCustom.cpp - compiler-specific types ------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include <utility> 11 12 #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h" 13 #include "llvm/DebugInfo/PDB/PDBSymbol.h" 14 #include "llvm/DebugInfo/PDB/PDBSymbolCustom.h" 15 16 using namespace llvm; 17 18 PDBSymbolCustom::PDBSymbolCustom(const IPDBSession &PDBSession, 19 std::unique_ptr<IPDBRawSymbol> CustomSymbol) 20 : PDBSymbol(PDBSession, std::move(CustomSymbol)) {} 21 22 void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) { 23 RawSymbol->getDataBytes(bytes); 24 } 25 26 void PDBSymbolCustom::dump(raw_ostream &OS, int Indent, 27 PDB_DumpLevel Level) const {}