2015-02-06 20:30:52 +00:00
|
|
|
//===- PDBSymbolCustom.cpp - compiler-specific types ------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-02-06 20:30:52 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-02-14 03:53:56 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolCustom.h"
|
|
|
|
|
2015-02-06 20:30:52 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
|
2015-02-22 22:03:38 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
2017-06-06 11:49:48 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
|
2015-02-14 03:53:56 +00:00
|
|
|
|
2015-02-13 09:09:03 +00:00
|
|
|
#include <utility>
|
2015-02-06 20:30:52 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
2016-05-04 20:32:13 +00:00
|
|
|
using namespace llvm::pdb;
|
2015-02-06 20:30:52 +00:00
|
|
|
|
|
|
|
void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) {
|
|
|
|
RawSymbol->getDataBytes(bytes);
|
|
|
|
}
|
2015-02-08 00:29:29 +00:00
|
|
|
|
2015-05-15 19:13:31 +00:00
|
|
|
void PDBSymbolCustom::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|