diff options
Diffstat (limited to 'COFF/PDB.h')
-rw-r--r-- | COFF/PDB.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/COFF/PDB.h b/COFF/PDB.h new file mode 100644 index 000000000000..091e90fa1ef1 --- /dev/null +++ b/COFF/PDB.h @@ -0,0 +1,25 @@ +//===- PDB.h ----------------------------------------------------*- C++ -*-===// +// +// The LLVM Linker +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLD_COFF_PDB_H +#define LLD_COFF_PDB_H + +#include "llvm/ADT/ArrayRef.h" +#include "llvm/ADT/StringRef.h" + +namespace lld { +namespace coff { +class SymbolTable; + +void createPDB(llvm::StringRef Path, SymbolTable *Symtab, + llvm::ArrayRef<uint8_t> SectionTable); +} +} + +#endif |