diff options
author | Ilia Mirkin <[email protected]> | 2015-04-29 23:33:27 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-04-29 23:34:30 -0400 |
commit | db269ae495425849804fb1d05cfe42b0d3d304b3 (patch) | |
tree | d68b6e21f8f7ae14ae119fe4ba308d96a690e4a5 | |
parent | a9d08a250ada5fbd4e3f78f8e4119ec295d692cf (diff) |
nv50/ir: fix asFlow() const helper for OP_JOIN
Signed-off-by: Ilia Mirkin <[email protected]>
Cc: [email protected]
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h b/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h index 255324fec40..e465f24845b 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h @@ -302,7 +302,7 @@ FlowInstruction *Instruction::asFlow() const FlowInstruction *Instruction::asFlow() const { - if (op >= OP_BRA && op <= OP_JOINAT) + if (op >= OP_BRA && op <= OP_JOIN) return static_cast<const FlowInstruction *>(this); return NULL; } |