[llvm-objcopy] [COFF] Fix warnings abuilt missing field initialization. NFC.
[llvm-complete.git] / tools / llvm-pdbutil / PrettyBuiltinDumper.h
blobfb6b0b172e6ebd96bdfceec72bc3a7203660b603
1 //===- PrettyBuiltinDumper.h ---------------------------------- *- 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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
16 namespace llvm {
17 namespace pdb {
19 class LinePrinter;
21 class BuiltinDumper : public PDBSymDumper {
22 public:
23 BuiltinDumper(LinePrinter &P);
25 void start(const PDBSymbolTypeBuiltin &Symbol);
27 private:
28 StringRef getTypeName(const PDBSymbolTypeBuiltin &Symbol);
30 LinePrinter &Printer;
35 #endif