diff options
author | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2021-02-19 02:09:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 20:09:17 -0500 |
commit | f3697b4fedc2d8f2311eaaebed051f6a44182bb2 (patch) | |
tree | ec0e4e46983be9738040ad9840658d1152891c6c /absl/debugging | |
parent | 3fcd00d7dddafe65ced638acca560105a414cba5 (diff) |
Add support for m68k (#900)
Fixes #895
Diffstat (limited to 'absl/debugging')
-rw-r--r-- | absl/debugging/internal/examine_stack.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/absl/debugging/internal/examine_stack.cc b/absl/debugging/internal/examine_stack.cc index 299a107b..c9fcb1f4 100644 --- a/absl/debugging/internal/examine_stack.cc +++ b/absl/debugging/internal/examine_stack.cc @@ -51,6 +51,8 @@ void* GetProgramCounter(void* vuc) { #elif defined(__i386__) if (14 < ABSL_ARRAYSIZE(context->uc_mcontext.gregs)) return reinterpret_cast<void*>(context->uc_mcontext.gregs[14]); +#elif defined(__m68k__) + return reinterpret_cast<void*>(context->uc_mcontext.gregs[16]); #elif defined(__mips__) return reinterpret_cast<void*>(context->uc_mcontext.pc); #elif defined(__powerpc64__) |