From ba307bb38d64b9fd38bcfa46d7395e5dae641402 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Thu, 20 Sep 2012 12:03:10 -0700 Subject: [PATCH] cpu.x86.features: Rename rdrnd to rdrand! --- basis/cpu/x86/features/features.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/cpu/x86/features/features.factor b/basis/cpu/x86/features/features.factor index 7dcc325111..d59d81f464 100644 --- a/basis/cpu/x86/features/features.factor +++ b/basis/cpu/x86/features/features.factor @@ -135,7 +135,7 @@ HOOK: (cpuid) cpu ( rax rcx regs -- ) : osxsave? ( -- ? ) 1 cpuid third 27 bit? ; : avx? ( -- ? ) 1 cpuid third 28 bit? ; : f16c? ( -- ? ) 1 cpuid third 29 bit? ; -: rdrnd? ( -- ? ) 1 cpuid third 30 bit? ; +: rdrand? ( -- ? ) 1 cpuid third 30 bit? ; : msr? ( -- ? ) 1 cpuid fourth 5 bit? ; : tm1? ( -- ? ) 1 cpuid fourth 29 bit? ;