xref: /llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp (revision 21473f7bb613dd8e0fae47a5fb065e3d9a0da543)
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(std::unique_ptr<IPDBRawSymbol> CustomSymbol)
19     : PDBSymbol(std::move(CustomSymbol)) {}
20 
21 void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) {
22   RawSymbol->getDataBytes(bytes);
23 }
24 
25 void PDBSymbolCustom::dump(llvm::raw_ostream &OS) const {}