Skip to content

Commit

Permalink
Merging r262581:
Browse files Browse the repository at this point in the history
------------------------------------------------------------------------
r262581 | mohit.bhakkad | 2016-03-03 05:05:20 +0000 (Thu, 03 Mar 2016) | 7 lines

[LSan] Enable use_registers test for MIPS

Reviewers: samsonov

Subscribers: jaydeep, sagar, llvm-commits

Differential Revision: http://reviews.llvm.org/D17797
------------------------------------------------------------------------

llvm-svn: 270360
  • Loading branch information
dsandersllvm committed May 22, 2016
1 parent f339c1f commit c7733c8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions compiler-rt/test/lsan/TestCases/use_registers.cc
Expand Up @@ -27,6 +27,11 @@ void *registers_thread_func(void *arg) {
:
: "r" (p)
);
#elif defined(__mips__)
asm ( "move $16, %0"
:
: "r" (p)
);
#else
#error "Test is not supported on this architecture."
#endif
Expand Down

0 comments on commit c7733c8

Please sign in to comment.