| Index: tests/debug_stub/debugger_test.c
|
| diff --git a/tests/debug_stub/debugger_test.c b/tests/debug_stub/debugger_test.c
|
| index 43d28a982d01c1f5a2708f9ed10a60c4a7a3d51a..51f3101a404bb276091a479e9a8b39b4e8ca328b 100644
|
| --- a/tests/debug_stub/debugger_test.c
|
| +++ b/tests/debug_stub/debugger_test.c
|
| @@ -35,7 +35,7 @@ __asm__(".pushsection .text, \"ax\", @progbits\n"
|
| #elif defined(__arm__)
|
| __asm__(".pushsection .text, \"ax\", %progbits\n"
|
| "fault_addr:\n"
|
| - ".word " NACL_TO_STRING(NACL_INSTR_BREAKPOINT) "\n"
|
| + ".word " NACL_TO_STRING(NACL_INSTR_ARM_BREAKPOINT) "\n"
|
| ".popsection\n");
|
| #else
|
| # error Update fault_addr for other architectures
|
| @@ -189,7 +189,7 @@ void breakpoint(void) {
|
| * because BKPTs guard data literals in the ARM sandbox.
|
| */
|
| __asm__(".p2align 4\n"
|
| - ".word " NACL_TO_STRING(NACL_INSTR_BREAKPOINT) "\n"
|
| + ".word " NACL_TO_STRING(NACL_INSTR_ARM_BREAKPOINT) "\n"
|
| ".p2align 4\n");
|
| #else
|
| # error Unsupported architecture
|
|
|