Raymond Toy pushed to branch issue-262-fix-arch-skip-inst-invalid at cmucl / cmucl
Commits: 47e545bb by Raymond Toy at 2024-08-21T19:15:22-07:00 Print the invalid code as hex, not a signed integer.
We used to print -55. It now prints as 0xc9, which is more helpful in determining. (Of course this won't actually be printed anymore since the code is now the low 6 bits of the byte.)
- - - - -
1 changed file:
- src/lisp/x86-arch.c
Changes:
===================================== src/lisp/x86-arch.c ===================================== @@ -194,7 +194,7 @@ arch_skip_instruction(os_context_t * context) break;
default: - fprintf(stderr, "[arch_skip_inst invalid code %d\n]\n", code); + fprintf(stderr, "[arch_skip_inst invalid code 0x%x\n]\n", code); break; }
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/47e545bbc1b6c7f542ff3515...