blob: 143914bc1e44a93c21adcd060f5a8295eb160126 [file] [log] [blame]
//===-- PDBFPOProgramToDWARFExpression.h ------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef lldb_Plugins_SymbolFile_PDB_PDBFPOProgramToDWARFExpression_h_
#define lldb_Plugins_SymbolFile_PDB_PDBFPOProgramToDWARFExpression_h_
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Triple.h"
namespace lldb_private {
class Stream;
namespace npdb {
bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program,
llvm::StringRef register_name,
llvm::Triple::ArchType arch_type,
lldb_private::Stream &stream);
} // namespace npdb
} // namespace lldb_private
#endif