diff options
author | Rhys Kidd <[email protected]> | 2016-08-27 11:25:44 -0400 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-08-29 11:03:20 -0700 |
commit | 8ba1fd339caaf9ad12bd97dda6e92e834c68c6e3 (patch) | |
tree | a965593449623cd7cb7d713daeaafbbedac263a8 | |
parent | 60bed14d0fdc3a05b6251b4ffc6013b5d3ca3e0f (diff) |
i915g: Fix typo in i915_translate_instruction()
Noticed this error in a debug message whilst reviewing
https://bugs.freedesktop.org/show_bug.cgi?id=97477
This patch doesn't go towards fixing that bug, but at
least may clarify future debug output.
Signed-off-by: Rhys Kidd <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
-rw-r--r-- | src/gallium/drivers/i915/i915_fpc_translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_fpc_translate.c b/src/gallium/drivers/i915/i915_fpc_translate.c index 70016ed51e6..72b90929401 100644 --- a/src/gallium/drivers/i915/i915_fpc_translate.c +++ b/src/gallium/drivers/i915/i915_fpc_translate.c @@ -585,7 +585,7 @@ i915_translate_instruction(struct i915_fp_compile *p, case TGSI_OPCODE_DDX: case TGSI_OPCODE_DDY: /* XXX We just output 0 here */ - debug_printf("Punting DDX/DDX\n"); + debug_printf("Punting DDX/DDY\n"); src0 = get_result_vector(p, &inst->Dst[0]); i915_emit_arith(p, A0_MOV, |