diff options
author | Keith Whitwell <[email protected]> | 2008-01-28 20:57:58 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-01-28 20:58:26 +0000 |
commit | 1e2d6b1b82aaa8bc57535e56c5e6eac9387e22e6 (patch) | |
tree | d4bfef58c0a3701259fcf27e067739bb127cb394 /src/mesa/pipe | |
parent | c50ba44095ceef6395727769663ed46c63a1a514 (diff) |
gallium: remove dead vars, code
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/draw/draw_vf_sse.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/pipe/draw/draw_vf_sse.c b/src/mesa/pipe/draw/draw_vf_sse.c index b238b542e76..066d6c0b7b4 100644 --- a/src/mesa/pipe/draw/draw_vf_sse.c +++ b/src/mesa/pipe/draw/draw_vf_sse.c @@ -343,8 +343,6 @@ static boolean build_vertex_emit( struct x86_program *p ) struct x86_reg countEBP = x86_make_reg(file_REG32, reg_BP); struct x86_reg vfESI = x86_make_reg(file_REG32, reg_SI); struct x86_reg temp = x86_make_reg(file_XMM, 0); - struct x86_reg vp0 = x86_make_reg(file_XMM, 1); - struct x86_reg vp1 = x86_make_reg(file_XMM, 2); uint8_t *fixup, *label; /* Push a few regs? @@ -371,7 +369,6 @@ static boolean build_vertex_emit( struct x86_program *p ) /* always load, needed or not: */ - sse_movups(&p->func, p->chan0, x86_make_disp(vfESI, get_offset(vf, &vf->chan_scale[0]))); sse_movups(&p->func, p->identity, x86_make_disp(vfESI, get_offset(vf, &vf->identity[0]))); /* Note address for loop jump */ |