1 //===-- PDBFPOProgramToDWARFExpression.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 
10 #ifndef lldb_Plugins_SymbolFile_PDB_PDBFPOProgramToDWARFExpression_h_
11 #define lldb_Plugins_SymbolFile_PDB_PDBFPOProgramToDWARFExpression_h_
12 
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/ADT/Triple.h"
15 
16 namespace lldb_private {
17 class Stream;
18 
19 namespace npdb {
20 
21 bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program,
22                                           llvm::StringRef register_name,
23                                           llvm::Triple::ArchType arch_type,
24                                           lldb_private::Stream &stream);
25 
26 } // namespace npdb
27 } // namespace lldb_private
28 
29 #endif
30