diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2009-01-27 11:15:42 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-01-27 11:16:32 +0000 |
commit | 27e5097e2aa6ee2b9cc8dbc5129fa7f4c8eb283c (patch) | |
tree | e174717234c912f3ff3e9e2ece14566eca091183 /src/gallium/auxiliary/draw/draw_vs_aos.c | |
parent | 3b853e93b2d244dac1b96212f6ebeb48e683fccf (diff) |
draw: silence some warnings
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs_aos.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.c b/src/gallium/auxiliary/draw/draw_vs_aos.c index e0923a809e..6817f29c2a 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos.c +++ b/src/gallium/auxiliary/draw/draw_vs_aos.c @@ -871,7 +871,7 @@ static void set_fpu_round_nearest( struct aos_compilation *cp ) } } - +#if 0 static void x87_emit_ex2( struct aos_compilation *cp ) { struct x86_reg st0 = x86_make_reg(file_x87, 0); @@ -894,12 +894,15 @@ static void x87_emit_ex2( struct aos_compilation *cp ) assert( stack == cp->func->x87_stack); } +#endif +#if 0 static void PIPE_CDECL print_reg( const char *msg, const float *reg ) { debug_printf("%s: %f %f %f %f\n", msg, reg[0], reg[1], reg[2], reg[3]); } +#endif #if 0 static void emit_print( struct aos_compilation *cp, |