From 308d1f05297ecbeab2102cc01487751834e07897 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Fri, 30 Nov 2018 00:47:15 +0000 Subject: [PATCH] Fix mistranscription of opcode for UNPCKLF. --- src/compiler/machines/x86-64/instrf.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/machines/x86-64/instrf.scm b/src/compiler/machines/x86-64/instrf.scm index ef3b893b8..f02d28eda 100644 --- a/src/compiler/machines/x86-64/instrf.scm +++ b/src/compiler/machines/x86-64/instrf.scm @@ -116,7 +116,7 @@ USA. (define-packed-bitwise-instruction XORF #x57) ;; Not really bitwise instruction, but these two fit the pattern. (define-packed-bitwise-instruction UNPCKHF #x15) - (define-packed-bitwise-instruction UNPCKLF #x15)) + (define-packed-bitwise-instruction UNPCKLF #x14)) (define-instruction CMPF (((? comparator float-comparator) -- 2.25.1