X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fvop.lisp;h=55fd6aefa732d06a6a1c4ab616afd37011111b61;hb=40bea2551744d3cdc05a79a923fbff79a5755845;hp=99d71111178ea4a934f9c6b6d110a9fa609c187f;hpb=f181ad9ffeeadf341b6a16c3591eadf0c1e3fa61;p=sbcl.git diff --git a/src/compiler/vop.lisp b/src/compiler/vop.lisp index 99d7111..55fd6ae 100644 --- a/src/compiler/vop.lisp +++ b/src/compiler/vop.lisp @@ -167,6 +167,11 @@ ;; the assembler label that points to the beginning of the code for ;; this block, or NIL when we haven't assigned a label yet (%label nil) + ;; the assembler label that points to the trampoline for this block, + ;; or NIL if unassigned yet. Only meaningful for local call targets. + (%trampoline-label nil) + ;; T if the preceding block assumes it can drop thru to %label + (dropped-thru-to nil) ;; list of LOCATION-INFO structures describing all the interesting ;; (to the debugger) locations in this block (locations nil :type list))