Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1e012cc

Browse files
committedMay 24, 2016
Merging r262819:
------------------------------------------------------------------------ r262819 | mohit.bhakkad | 2016-03-07 14:42:49 +0530 (Mon, 07 Mar 2016) | 7 lines [LLDB][MIPS] Fix TestDisassembleBreakpoint Patch by Nitesh Jain Reviewers: clayborg, jaydeep. Subscribers: bhushan, mohit.bhakkad, sagar, lldb-commits. Differential Revision: http://reviews.llvm.org/D17597 ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/lldb/branches/release_38@270545 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 61f22f1 commit 1e012cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/Python/lldbsuite/test/functionalities/disassembly/TestDisassembleBreakpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test(self):
4141
instructions = [' add ', ' ldr ', ' str ']
4242
elif re.match("mips" , arch):
4343
breakpoint_opcodes = ["break"]
44-
instructions = ['lw', 'sw', 'jr']
44+
instructions = ['lw', 'sw']
4545
else:
4646
# TODO please add your arch here
4747
self.fail('unimplemented for arch = "{arch}"'.format(arch=self.getArchitecture()))

0 commit comments

Comments
 (0)
This repository has been archived.