diff options
| author | Nitesh Jain <nitesh.jain@imgtec.com> | 2017-05-04 11:34:42 +0000 |
|---|---|---|
| committer | Nitesh Jain <nitesh.jain@imgtec.com> | 2017-05-04 11:34:42 +0000 |
| commit | dd12594345b0e2156a524f88a43dfaeb5ab65f1d (patch) | |
| tree | d1fe5edc9b0e31b93d1b875d1725cdfdf081433e /lldb/scripts/interface | |
| parent | 080d478bd2908b75c7680325f7a39a4d61dc84e6 (diff) | |
| download | bcm5719-llvm-dd12594345b0e2156a524f88a43dfaeb5ab65f1d.tar.gz bcm5719-llvm-dd12594345b0e2156a524f88a43dfaeb5ab65f1d.zip | |
[LLDB][MIPS] Fix TestStepOverBreakpoint.py failure.
Reviewers: jingham, labath
Subscribers: jaydeep, bhushan, lldb-commits, slthakur
Differential Revision: https://reviews.llvm.org/D32168
llvm-svn: 302139
Diffstat (limited to 'lldb/scripts/interface')
| -rw-r--r-- | lldb/scripts/interface/SBInstruction.i | 3 | ||||
| -rw-r--r-- | lldb/scripts/interface/SBInstructionList.i | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBInstruction.i b/lldb/scripts/interface/SBInstruction.i index d5b60201e95..c78799c6fe6 100644 --- a/lldb/scripts/interface/SBInstruction.i +++ b/lldb/scripts/interface/SBInstruction.i @@ -54,6 +54,9 @@ public: bool HasDelaySlot (); + bool + CanSetBreakpoint (); + void Print (FILE *out); diff --git a/lldb/scripts/interface/SBInstructionList.i b/lldb/scripts/interface/SBInstructionList.i index 32603be5cc1..f4b572c341c 100644 --- a/lldb/scripts/interface/SBInstructionList.i +++ b/lldb/scripts/interface/SBInstructionList.i @@ -44,6 +44,9 @@ public: lldb::SBInstruction GetInstructionAtIndex (uint32_t idx); + size_t GetInstructionsCount(const SBAddress &start, const SBAddress &end, + bool canSetBreakpoint); + void Clear (); |

