mirror of
https://github.com/QuasarApp/backward-cpp.git
synced 2025-04-30 04:14:30 +00:00
commit
6ffe2f9524
@ -1934,6 +1934,8 @@ private:
|
||||
error_addr = reinterpret_cast<void*>(uctx->uc_mcontext.gregs[REG_RIP]);
|
||||
#elif defined(REG_EIP) // x86_32
|
||||
error_addr = reinterpret_cast<void*>(uctx->uc_mcontext.gregs[REG_EIP]);
|
||||
#elif defined(__arm__)
|
||||
error_addr = reinterpret_cast<void*>(uctx->uc_mcontext.arm_pc);
|
||||
#else
|
||||
# warning ":/ sorry, ain't know no nothing none not of your architecture!"
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user