r300/compiler: Emit flow control instructions and ALU result writes on R500
[mesa.git] / src / mesa / drivers / dri / r300 / compiler / radeon_pair_schedule.c
index 8a4b5ac8a9cef8032fd7385ff0be031b1536c805..ea01bb78819ac067cb3cc897b1e6b4c8a1e0703f 100644 (file)
@@ -454,7 +454,7 @@ static int is_controlflow(struct rc_instruction * inst)
 {
        if (inst->Type == RC_INSTRUCTION_NORMAL) {
                const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode);
-               return opcode->IsControlFlow;
+               return opcode->IsFlowControl;
        }
        return 0;
 }