diff options
Diffstat (limited to 'include/lldb/API/SBInstructionList.h')
| -rw-r--r-- | include/lldb/API/SBInstructionList.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/include/lldb/API/SBInstructionList.h b/include/lldb/API/SBInstructionList.h index 4434d50f471f..e203d0b80564 100644 --- a/include/lldb/API/SBInstructionList.h +++ b/include/lldb/API/SBInstructionList.h @@ -46,6 +46,10 @@ public:    void Print(FILE *out); +  void Print(SBFile out); + +  void Print(FileSP out); +    bool GetDescription(lldb::SBStream &description);    bool DumpEmulationForAllInstructions(const char *triple); @@ -56,6 +60,8 @@ protected:    friend class SBTarget;    void SetDisassembler(const lldb::DisassemblerSP &opaque_sp); +  bool GetDescription(lldb_private::Stream &description); +  private:    lldb::DisassemblerSP m_opaque_sp; | 
