Module: Mesa Branch: master Commit: cce3bea2a71e5c97eb4d2da6ed1cec45d74e2322 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cce3bea2a71e5c97eb4d2da6ed1cec45d74e2322
Author: Matt Turner <[email protected]> Date: Thu May 8 16:06:33 2014 -0700 i965/disasm: Align send instruction meta-information with dst. Has been misaligned since we added instruction offset prefixes. Acked-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_disasm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index b9654a3..1de02e9 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -1235,6 +1235,7 @@ int brw_disasm (FILE *file, struct brw_instruction *inst, int gen, bool is_compa pad (file, 16); space = 0; + fprintf (file, " "); if (gen >= 6) { err |= control (file, "target function", target_function_gen6, target, &space); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
