diff options
author | Samuel Pitoiset <[email protected]> | 2016-07-05 01:53:56 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2016-07-20 11:11:30 +0200 |
commit | 8489f20689c8d3d372c4143311cca23cd6a5fc58 (patch) | |
tree | 5cde7b1e41c44ee6d9757e34b5b26d8b29f179ad /src/gallium/drivers/nouveau | |
parent | 1edc44bfd3a0be72bbc77ee82a833692cc404cbd (diff) |
nv50/ir: print OP_SUREDB subops in debug mode
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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]); |