Skip to content
Snippets Groups Projects
Commit 58b8f94b authored by rtoy's avatar rtoy
Browse files

Align with a NOP byte instead of the default 0. Helps the

disassembler work better.

From Helmut Eller, cmucl-imp, 2004/09/22.
parent e2793919
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/call.lisp,v 1.19 2003/08/05 14:04:51 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/call.lisp,v 1.20 2004/10/04 02:39:18 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -208,9 +208,9 @@
(:info start-lab copy-more-arg-follows)
(:vop-var vop)
(:generator 1
;; Make sure the function is aligned, and drop a label pointing to this
;; function header.
(align lowtag-bits)
;; Make sure the function is aligned (using NOPs), and drop a
;; label pointing to this function header.
(align lowtag-bits #x90)
(trace-table-entry trace-table-function-prologue)
(emit-label start-lab)
;; Skip space for the function header.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment