Skip to content

Commit

Permalink
Merging r262819:
Browse files Browse the repository at this point in the history
------------------------------------------------------------------------
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
------------------------------------------------------------------------

llvm-svn: 270545
  • Loading branch information
Mohit7 committed May 24, 2016
1 parent b6e0f95 commit 9b4ccee
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ def test(self):
instructions = [' add ', ' ldr ', ' str ']
elif re.match("mips" , arch):
breakpoint_opcodes = ["break"]
instructions = ['lw', 'sw', 'jr']
instructions = ['lw', 'sw']
else:
# TODO please add your arch here
self.fail('unimplemented for arch = "{arch}"'.format(arch=self.getArchitecture()))
Expand Down

0 comments on commit 9b4ccee

Please sign in to comment.