Commit 343d626e authored by Raymond Toy's avatar Raymond Toy
Browse files

Insert emit-not-implemented.

Add one for LOAD-CONSTANT and one for MOVE-WORD-ARGUMENT.
parent cd18d63c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@

(define-move-function (load-constant 5) (vop x y)
  ((constant) (descriptor-reg))
  (not-implemented "LOAD-CONSTANT")
  (loadw y code-tn (tn-offset x) other-pointer-type gtemp-tn))

(define-move-function (load-stack 5) (vop x y)
@@ -372,6 +373,7 @@
  (:temporary (:scs (non-descriptor-reg)) temp)
  (:note _N"word integer argument move")
  (:generator 0
    (emit-not-implemented)
    (sc-case y
      ((signed-reg unsigned-reg)
       (move y x))