[Mesa-dev] [PATCH 07/11] i965/eu: Make it clear that brw_patch_break_count only runs on Gen4-5.

Kenneth Graunke kenneth at whitecape.org
Sat Aug 9 14:28:47 PDT 2014


Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
---
 src/mesa/drivers/dri/i965/brw_eu_emit.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index 2e11eca..214ff0a 100644
--- a/src/mesa/drivers/dri/i965/brw_eu_emit.c
+++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c
@@ -1674,6 +1674,8 @@ brw_patch_break_cont(struct brw_compile *p, brw_inst *while_inst)
    brw_inst *inst;
    int br = (brw->gen == 5) ? 2 : 1;
 
+   assert(brw->gen < 6);
+
    for (inst = while_inst - 1; inst != do_inst; inst--) {
       /* If the jump count is != 0, that means that this instruction has already
        * been patched because it's part of a loop inside of the one we're
-- 
2.0.0



More information about the mesa-dev mailing list