diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-03-18 11:35:26 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-03-18 13:04:43 +0000 |
commit | 5488fe84f97b839287abc39727d60ef680f9dd5c (patch) | |
tree | a08eb7865fa2228c6eb0388bba8cf94e8678a47e /src/gallium/auxiliary/draw/draw_vs_aos.h | |
parent | eddfad39552cc81c1157539c930a1b6c707bf1d3 (diff) |
draw: use AOS_ERROR rather than clash-prone ERROR() macro
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs_aos.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.h b/src/gallium/auxiliary/draw/draw_vs_aos.h index 264387517b..2cf72ddf7b 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos.h +++ b/src/gallium/auxiliary/draw/draw_vs_aos.h @@ -204,7 +204,7 @@ struct x86_reg aos_get_internal_xmm( struct aos_compilation *cp, unsigned imm ); -#define ERROR(cp, msg) \ +#define AOS_ERROR(cp, msg) \ do { \ if (0) debug_printf("%s: x86 translation failed: %s\n", __FUNCTION__, msg); \ cp->error = 1; \ |