From 4d5f727a630122334f26052b307f6cfb7c68c704 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Wed, 7 Oct 2009 12:00:31 -0500 Subject: [PATCH] sse doesn't actually have an unsigned->unsigned pack instruction --- basis/cpu/x86/x86.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/cpu/x86/x86.factor b/basis/cpu/x86/x86.factor index 469862038c..2c2f4189d4 100644 --- a/basis/cpu/x86/x86.factor +++ b/basis/cpu/x86/x86.factor @@ -770,8 +770,8 @@ M: x86 %unsigned-pack-vector M: x86 %unsigned-pack-vector-reps { - { sse2? { ushort-8-rep short-8-rep } } - { sse4.1? { uint-4-rep int-4-rep } } + { sse2? { short-8-rep } } + { sse4.1? { int-4-rep } } } available-reps ; :: %sign-extension-vector ( dst src rep -- )