mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Removed excess stringizations on regstr [Bug #17532]
This commit is contained in:
parent
083c5f08ec
commit
d8fb0bca54
1 changed files with 1 additions and 1 deletions
|
@ -814,7 +814,7 @@ print_machine_register(size_t reg, const char *reg_name, int col_count, int max_
|
|||
# if defined(__x86_64__) || defined(__i386__)
|
||||
# define dump_machine_register(reg) (col_count = print_machine_register(mctx->gregs[REG_##reg], #reg, col_count, 80))
|
||||
# elif defined(__aarch64__) || defined(__arm__)
|
||||
# define dump_machine_register(reg, regstr) (col_count = print_machine_register(reg, #regstr, col_count, 80))
|
||||
# define dump_machine_register(reg, regstr) (col_count = print_machine_register(reg, regstr, col_count, 80))
|
||||
# endif
|
||||
# elif defined __APPLE__
|
||||
# define dump_machine_register(reg) (col_count = print_machine_register(mctx->MCTX_SS_REG(reg), #reg, col_count, 80))
|
||||
|
|
Loading…
Add table
Reference in a new issue