Resubmit "Create lib/DebugInfo/PDB" (r228428)
[oota-llvm.git] / lib / DebugInfo / PDB / PDBSymbolCustom.cpp
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 void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) {
19   RawSymbol->getDataBytes(bytes);
20 }