Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Fix ARM build break (#7564)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas authored Jun 28, 2019
1 parent 1358adb commit ccda70a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Native/libunwind/include/__libunwind_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
# define _LIBUNWIND_CONTEXT_SIZE 61
# define _LIBUNWIND_CURSOR_SIZE 68
# else
# define _LIBUNWIND_CONTEXT_SIZE 42
# define _LIBUNWIND_CURSOR_SIZE 49
# define _LIBUNWIND_CONTEXT_SIZE 50
# define _LIBUNWIND_CURSOR_SIZE 57
# endif
# define _LIBUNWIND_HIGHEST_DWARF_REGISTER _LIBUNWIND_HIGHEST_DWARF_REGISTER_ARM
# elif defined(__or1k__)
Expand Down
1 change: 1 addition & 0 deletions src/Native/libunwind/src/Registers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2219,6 +2219,7 @@ class _LIBUNWIND_HIDDEN Registers_arm {
bool validRegister(int num) const;
uint32_t getRegister(int num) const;
void setRegister(int num, uint32_t value, uint32_t location);
uint32_t getRegisterLocation(int num) const;
bool validFloatRegister(int num) const;
unw_fpreg_t getFloatRegister(int num);
void setFloatRegister(int num, unw_fpreg_t value);
Expand Down

0 comments on commit ccda70a

Please sign in to comment.