diff options
author | Matt Turner <[email protected]> | 2014-05-08 16:06:33 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-05-15 15:45:40 -0700 |
commit | cce3bea2a71e5c97eb4d2da6ed1cec45d74e2322 (patch) | |
tree | eb05d14751db06ec3d1f3107f486cb5bafc947b8 | |
parent | e00fe451b8bac0aa4f03e07fddee08a870f79bb0 (diff) |
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]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index b9654a3420c..1de02e9382b 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); |