Remove warning for uncompilable operations, these should be errors

This commit is contained in:
John Lorentzson 2025-07-09 14:34:57 +02:00
parent ea31bac351
commit b65012ed04

View file

@ -144,9 +144,6 @@ is the responsibility of the pre-assembly compilation step."
(emit-lda (data-reference data)) (emit-lda (data-reference data))
(setf *last-instruction* (list :load data))))) (setf *last-instruction* (list :load data)))))
(defmethod compile-ir ((inst ir-inst))
(warn "Skipped compiling ~A; no COMPILE-IR method" inst))
(defmethod compile-ir ((inst ir-return)) (defmethod compile-ir ((inst ir-return))
(emit-asm-instruction :opcode #x60 :byte-length 1)) (emit-asm-instruction :opcode #x60 :byte-length 1))