X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fhppa%2Fsanctify.lisp;h=fb25bae81cc78667002ea18a5f47c1e6ba5d3d99;hb=6d3b9d5de8a28cd92e280f3451b60ce412260c19;hp=2c8f9b0120bc16987e34833353d28c37a0b32171;hpb=8a19c6876412b8ad1cf729297c2a373d63a0d0ec;p=sbcl.git diff --git a/src/compiler/hppa/sanctify.lisp b/src/compiler/hppa/sanctify.lisp index 2c8f9b0..fb25bae 100644 --- a/src/compiler/hppa/sanctify.lisp +++ b/src/compiler/hppa/sanctify.lisp @@ -7,20 +7,20 @@ ;;;; 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") (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)