2015-05-27 14:44:32 -04:00
|
|
|
//===- PDBSymbolAnnotation.cpp - --------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-08-20 16:50:12 -04: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-05-27 14:44:32 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolAnnotation.h"
|
|
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
|
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
|
|
using namespace llvm;
|
2016-07-23 16:41:05 -04:00
|
|
|
using namespace llvm::pdb;
|
2015-05-27 14:44:32 -04:00
|
|
|
|
|
|
|
|
void PDBSymbolAnnotation::dump(PDBSymDumper &Dumper) const {
|
|
|
|
|
Dumper.dump(*this);
|
|
|
|
|
}
|