What is HARP::NREG ?
I have some code that uses SYSTEM:INT32 that when I compile it gives
this warning:
Variable A [type HARP::NREG] being set to HARP::GREG value
What does this mean?
This is on LispWorks 5.0.2 running on my Intel Mac (still using Mac OS
10.4.10).
The code is below.
Cheers,
Chris Dean
(defun my-test-hash-32bit (data)
(declare (optimize (float 0)))
(let ((a (system:integer-to-int32 (length data))))
(dotimes (i (length data))
(let ((x (aref data i)))
(setf a (system:int32+ a (system:integer-to-int32 x)))))
(system:int32-to-integer a)))