From da4cf610142918ca07ce2a07ef19c4d590d042b5 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Tue, 6 Oct 2009 20:09:50 -0500 Subject: [PATCH] oops...PACKUSDW is sse4 only --- basis/cpu/x86/x86.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basis/cpu/x86/x86.factor b/basis/cpu/x86/x86.factor index 96b6b3b550..4d3a3203a8 100644 --- a/basis/cpu/x86/x86.factor +++ b/basis/cpu/x86/x86.factor @@ -770,7 +770,8 @@ M: x86 %unsigned-pack-vector M: x86 %unsigned-pack-vector-reps { - { sse2? { ushort-8-rep short-8-rep uint-4-rep int-4-rep } } + { sse2? { ushort-8-rep short-8-rep } } + { sse4.1? { uint-4-rep int-4-rep } } } available-reps ; :: %sign-extension-vector ( dst src rep -- )