draw: remove another debug assert on failover to generic vs varient
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 11 Jun 2008 08:36:00 +0000 (09:36 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 11 Jun 2008 08:36:58 +0000 (09:36 +0100)
src/gallium/auxiliary/draw/draw_vs_aos.h

index f6f6af2..66944a4 100644 (file)
@@ -202,9 +202,8 @@ struct x86_reg aos_get_internal_xmm( struct aos_compilation *cp,
 
 #define ERROR(cp, msg)                                                  \
 do {                                                                    \
-   debug_printf("%s: x86 translation failed: %s\n", __FUNCTION__, msg); \
+   if (0) debug_printf("%s: x86 translation failed: %s\n", __FUNCTION__, msg); \
    cp->error = 1;                                                       \
-   assert(0);                                                           \
 } while (0)