Raymond Toy pushed to branch master at cmucl / cmucl
Commits: e15cd9fa by Raymond Toy at 2015-10-11T09:07:05Z Disassemble BREAK inst as INT3.
The break inst is really the int3 instruction, so disassemble it as int3.
- - - - -
1 changed file:
- src/compiler/x86/insts.lisp
Changes:
===================================== src/compiler/x86/insts.lisp ===================================== --- a/src/compiler/x86/insts.lisp +++ b/src/compiler/x86/insts.lisp @@ -2105,6 +2105,7 @@ (define-instruction break (segment code) (:declare (type (unsigned-byte 8) code)) (:printer byte-imm ((op #b11001100)) '(:name :tab code) + :print-name 'int3 :control #'break-control) (:emitter (emit-byte segment #b11001100)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e15cd9fa3961dbb4e37aedc83e...