translate_sse: enable on Win64
authorLuca Barbieri <luca@luca-barbieri.com>
Thu, 19 Aug 2010 22:04:30 +0000 (00:04 +0200)
committerLuca Barbieri <luca@luca-barbieri.com>
Thu, 19 Aug 2010 22:09:37 +0000 (00:09 +0200)
According to Vinson, enabling it causes no regressions

src/gallium/auxiliary/translate/translate.c

index 03a7f050aa259e03e207be8318b6b576b98569ba..73287b667db77b04cfb4a7dacb3587074ccd655c 100644 (file)
@@ -38,8 +38,7 @@ struct translate *translate_create( const struct translate_key *key )
 {
    struct translate *translate = NULL;
 
-/* TODO: enable Win64 once it has actually been tested */
-#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(_WIN64))
+#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
    translate = translate_sse2_create( key );
    if (translate)
       return translate;