2015-02-08 00:29:29 +00:00
|
|
|
//===- PDBSymbolLabel.cpp - -------------------------------------*- 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-08 00:29:29 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolLabel.h"
|
2015-02-14 03:53:56 +00:00
|
|
|
|
2015-02-22 22:03:38 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
2015-02-14 03:53:56 +00:00
|
|
|
|
2015-02-13 09:09:03 +00:00
|
|
|
#include <utility>
|
2015-02-13 07:40:03 +00:00
|
|
|
|
2015-02-08 00:29:29 +00:00
|
|
|
using namespace llvm;
|
2016-05-04 20:32:13 +00:00
|
|
|
using namespace llvm::pdb;
|
2015-02-08 00:29:29 +00:00
|
|
|
|
2015-03-01 06:51:29 +00:00
|
|
|
void PDBSymbolLabel::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|