From: Samuel Pitoiset Date: Mon, 4 Jul 2016 23:53:56 +0000 (+0200) Subject: nv50/ir: print OP_SUREDB subops in debug mode X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8489f20689c8d3d372c4143311cca23cd6a5fc58;p=mesa.git nv50/ir: print OP_SUREDB subops in debug mode Signed-off-by: Samuel Pitoiset Reviewed-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index ae0dd78a816..22f2f5def71 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp @@ -570,6 +570,7 @@ void Instruction::print() const PRINT("%s ", interpStr[ipa]); switch (op) { case OP_SUREDP: + case OP_SUREDB: case OP_ATOM: if (subOp < ARRAY_SIZE(atomSubOpStr)) PRINT("%s ", atomSubOpStr[subOp]);