diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/ios/handler/ios_exception_minidump_generator.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/ios/handler/ios_exception_minidump_generator.mm b/src/client/ios/handler/ios_exception_minidump_generator.mm index cd0fe65b..b8aebc29 100644 --- a/src/client/ios/handler/ios_exception_minidump_generator.mm +++ b/src/client/ios/handler/ios_exception_minidump_generator.mm @@ -40,12 +40,14 @@ const uint32_t kExpectedFinalSp = 0; const int kExceptionType = EXC_SOFTWARE; const int kExceptionCode = MD_EXCEPTION_CODE_MAC_NS_EXCEPTION; +#ifdef HAS_ARM_SUPPORT // Append the given 4 bytes value to the sp position of the stack represented // by memory. void AppendToMemory(uint8_t *memory, uint32_t sp, uint32_t data) { assert(sizeof(data) == 4); memcpy(memory + sp, &data, sizeof(data)); } +#endif } // namespace |