]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/PDB.h
Update lld to trunk r290819 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / COFF / PDB.h
1 //===- PDB.h ----------------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLD_COFF_PDB_H
11 #define LLD_COFF_PDB_H
12
13 #include "llvm/ADT/ArrayRef.h"
14 #include "llvm/ADT/StringRef.h"
15
16 namespace lld {
17 namespace coff {
18 class SymbolTable;
19
20 void createPDB(llvm::StringRef Path, SymbolTable *Symtab,
21                llvm::ArrayRef<uint8_t> SectionTable);
22 }
23 }
24
25 #endif