From a04b85a45ebb13ffca696e9a6ea8de5fd9e2de3a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Thu, 7 Jan 2010 18:30:01 +1300 Subject: [PATCH] cpu.x86: sse_version was renamed to (sse-version) --- basis/cpu/x86/x86.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/cpu/x86/x86.factor b/basis/cpu/x86/x86.factor index a14e2468ad..46123c9e23 100644 --- a/basis/cpu/x86/x86.factor +++ b/basis/cpu/x86/x86.factor @@ -1469,6 +1469,6 @@ enable-fixnum-log2 ] when ; : check-sse ( -- ) - [ { sse_version } compile ] with-optimizer + [ { (sse-version) } compile ] with-optimizer "Checking for multimedia extensions: " write sse-version [ sse-string write " detected" print ] [ enable-sse2 ] bi ;