X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fhppa%2Fsanctify.lisp;h=fa0aa0fa9bc22b5ece1c77a9171af4d81193e482;hb=1540c1c1d517c58fa9a41629beb65cdce7dfafb6;hp=2c8f9b0120bc16987e34833353d28c37a0b32171;hpb=8a19c6876412b8ad1cf729297c2a373d63a0d0ec;p=sbcl.git diff --git a/src/compiler/hppa/sanctify.lisp b/src/compiler/hppa/sanctify.lisp index 2c8f9b0..fa0aa0f 100644 --- a/src/compiler/hppa/sanctify.lisp +++ b/src/compiler/hppa/sanctify.lisp @@ -7,20 +7,21 @@ ;;;; While most of SBCL is derived from the CMU CL system, the test ;;;; files (like this one) were written from scratch after the fork ;;;; from CMU CL. -;;;; +;;;; ;;;; This software is in the public domain and is provided with ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. -(in-package :sb!vm) +(in-package "SB!VM") +;;; FIXME-lav, can we do this in assembly instead ? (defun sanctify-for-execution (component) (without-gcing (alien-funcall (extern-alien "sanctify_for_execution" - (function void - system-area-pointer - unsigned-long)) - (code-instructions component) - (* (code-header-ref component code-code-size-slot) - n-word-bytes))) + (function void + system-area-pointer + unsigned-long)) + (code-instructions component) + (* (code-header-ref component code-code-size-slot) + n-word-bytes))) nil)