diff options
author | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-12-09 13:44:15 +0000 |
---|---|---|
committer | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-12-09 13:44:15 +0000 |
commit | e51a967d8962b8d82648753d29973b2e3703359a (patch) | |
tree | 643ed1bb2375410d33984f30e89bf4b3a714502f /lldb/packages/Python/lldbsuite/test | |
parent | de5923a70a2bbee5334196e1401f4f082e5ecd65 (diff) | |
download | bcm5719-llvm-e51a967d8962b8d82648753d29973b2e3703359a.tar.gz bcm5719-llvm-e51a967d8962b8d82648753d29973b2e3703359a.zip |
[LLDB][MIPS] Fix TestMultipleHits for MIPS
Reviewers: clayborg, labath, zturner
Subscribers: jaydeep, bhushan, slthakur, lldb-commits
Differential Revision: https://reviews.llvm.org/D27085
llvm-svn: 289210
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp index 5fc516cc960..430c02cc052 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp @@ -8,9 +8,7 @@ //===----------------------------------------------------------------------===// #include <stdio.h> #include <stdint.h> - alignas(16) uint8_t buf[32]; - // This uses inline assembly to generate an instruction that writes to a large // block of memory. If it fails on your compiler/architecture, please add // appropriate code to generate a large write to "buf". If you cannot write at @@ -24,6 +22,8 @@ int main() { asm volatile ("stm %0, { r0, r1, r2, r3 }" : : "r"(buf)); #elif defined(__aarch64__) asm volatile ("stp x0, x1, %0" : : "m"(buf)); +#elif defined(__mips__) + asm volatile ("lw $2, %0" : : "m"(buf)); #endif return 0; } |