Raymond Toy pushed to branch issue-97-define-ud2-inst at cmucl / cmucl
Commits: 85639e3d by Raymond Toy at 2021-04-10T10:51:31-07:00 Aargh. Really fix the problem.
Can't use `#.(format...)` because `code` is defined. Have to generate the string at run-time.
- - - - -
1 changed file:
- src/compiler/x86/insts.lisp
Changes:
===================================== src/compiler/x86/insts.lisp ===================================== @@ -2126,7 +2126,7 @@ (nt #.(format nil "Trap ~D: Function end breakpoint trap" vm:function-end-breakpoint-trap))) (t - (nt #.(format nil "Trap ~D: Unexpected trap type!!!!" code))))))) + (nt (format nil "Trap ~D: Unexpected trap type!!!!" code)))))))
;; The ud1 instruction where we smash the code (trap type) into the ;; low 6 bits of the mod r/m byte. The mod bits are set to #b11 to
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/85639e3dde6341cc4e171c40...