]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/PDB.h
MFV r316917: 7968 multi-threaded spa_sync()
[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 llvm {
17 namespace codeview {
18 union DebugInfo;
19 }
20 }
21
22 namespace lld {
23 namespace coff {
24 class SymbolTable;
25
26 void createPDB(llvm::StringRef Path, SymbolTable *Symtab,
27                llvm::ArrayRef<uint8_t> SectionTable,
28                const llvm::codeview::DebugInfo *DI);
29 }
30 }
31
32 #endif