diff options
author | Eric Anholt <[email protected]> | 2011-12-06 12:09:58 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-12-21 14:31:33 -0800 |
commit | 9f8814752f306cb9a26d283f0b7cf876639e10f7 (patch) | |
tree | c747218613a8a1d994f3b3c0f08ad533d1c0f717 /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | d44878e754e65550c0725feb76fe0cbab0ae5d93 (diff) |
i965: Drop unused do_insn argument from gen6_CONT().
The branch distances get patched up later at the WHILE instruction.
Reviewed-by: Yuanhan Liu <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index 1529ec622a7..481fbf1c7b6 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -1020,8 +1020,7 @@ struct brw_instruction *brw_WHILE(struct brw_compile *p, struct brw_instruction *brw_BREAK(struct brw_compile *p, int pop_count); struct brw_instruction *brw_CONT(struct brw_compile *p, int pop_count); -struct brw_instruction *gen6_CONT(struct brw_compile *p, - struct brw_instruction *do_insn); +struct brw_instruction *gen6_CONT(struct brw_compile *p); /* Forward jumps: */ void brw_land_fwd_jump(struct brw_compile *p, |