From c1e7b4aad739a7e71d0b0095893df6c257b7724a Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Wed, 7 May 2014 20:42:44 -0700
Subject: [PATCH] Oops. Need to add the package prefix for sigcontext.

---
 src/compiler/ppc/float.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/compiler/ppc/float.lisp b/src/compiler/ppc/float.lisp
index 33e5ed056..200772f3e 100644
--- a/src/compiler/ppc/float.lisp
+++ b/src/compiler/ppc/float.lisp
@@ -1402,7 +1402,7 @@
 (export 'get-fp-operands)
 
 (defun get-fp-operation (scp)
-  (declare (type (alien (* sigcontext)) scp))
+  (declare (type (alien (* unix:sigcontext)) scp))
   ;; Get the offending FP instruction from the context.  We return the
   ;; operation associated with the FP instruction, the precision of
   ;; the operation, and the operands of the instruction.
@@ -1440,7 +1440,7 @@
 	(values fop format rd ra rb)))))
 
 (defun get-fp-operands (scp modes)
-  (declare (type (alien (* sigcontext)) scp))
+  (declare (type (alien (* unix:sigcontext)) scp))
   ;; From the offending FP instruction, get the operation and
   ;; operands, if we can.
   (multiple-value-bind (fop format rd rs1 rs2)
-- 
GitLab