BuiltinDumper.h 704 B

123456789101112131415161718192021222324252627282930
  1. //===- BuiltinDumper.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. //===----------------------------------------------------------------------===//
  9. #ifndef LLVM_TOOLS_LLVMPDBDUMP_BUILTINDUMPER_H
  10. #define LLVM_TOOLS_LLVMPDBDUMP_BUILTINDUMPER_H
  11. #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
  12. namespace llvm {
  13. class LinePrinter;
  14. class BuiltinDumper : public PDBSymDumper {
  15. public:
  16. BuiltinDumper(LinePrinter &P);
  17. void start(const PDBSymbolTypeBuiltin &Symbol);
  18. private:
  19. LinePrinter &Printer;
  20. };
  21. }
  22. #endif