Chromium Code Reviews| Index: src/platform-freebsd.cc |
| =================================================================== |
| --- src/platform-freebsd.cc (revision 5267) |
| +++ src/platform-freebsd.cc (working copy) |
| @@ -198,9 +198,10 @@ |
| void OS::DebugBreak() { |
| -#if (defined(__arm__) || defined(__thumb__)) && \ |
| - defined(CAN_USE_ARMV5_INSTRUCTIONS) |
| +#if (defined(__arm__) || defined(__thumb__)) |
| +# if defined(CAN_USE_ARMV5_INSTRUCTIONS) |
| asm("bkpt 0"); |
| +# endif |
| #else |
| asm("int $3"); |
| #endif |