2015-02-08 08:29:29 +08:00
|
|
|
//===- PDBSymbolAnnotation.cpp - --------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolAnnotation.h"
|
2015-02-14 11:53:56 +08:00
|
|
|
|
2015-02-23 06:03:38 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
2015-02-14 11:53:56 +08:00
|
|
|
|
2015-02-13 17:09:03 +08:00
|
|
|
#include <utility>
|
2015-02-08 08:29:29 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
2016-05-05 04:32:13 +08:00
|
|
|
using namespace llvm::pdb;
|
2015-02-08 08:29:29 +08:00
|
|
|
|
2015-03-01 14:51:29 +08:00
|
|
|
void PDBSymbolAnnotation::dump(PDBSymDumper &Dumper) const {
|
|
|
|
Dumper.dump(*this);
|
2015-02-23 06:03:38 +08:00
|
|
|
}
|