summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-06-11 09:36:00 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-06-11 09:36:58 +0100
commitbd9264210097d08073a4ea3619ca25db56245280 (patch)
tree3809a999e00fd8ac42a8a8270e24b94fba59e06c
parent3bdeff5becbba27d57250f761777bedbdcb66a1e (diff)
draw: remove another debug assert on failover to generic vs varient
-rw-r--r--src/gallium/auxiliary/draw/draw_vs_aos.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.h b/src/gallium/auxiliary/draw/draw_vs_aos.h
index f6f6af2dd9..66944a4e33 100644
--- a/src/gallium/auxiliary/draw/draw_vs_aos.h
+++ b/src/gallium/auxiliary/draw/draw_vs_aos.h
@@ -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)