~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/i965/brw_disasm.c

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-03-14 12:18:29 UTC
  • mfrom: (1.7.14)
  • Revision ID: package-import@ubuntu.com-20130314121829-bv7c0z6t1pob5ket
Tags: 9.0.3-0ubuntu1
New upstream release. (LP: #1134466)

Show diffs side-by-side

added added

removed removed

Lines of Context:
539
539
            if (inst->bits1.da1.dest_subreg_nr)
540
540
                format (file, ".%d", inst->bits1.da1.dest_subreg_nr /
541
541
                                     reg_type_size[inst->bits1.da1.dest_reg_type]);
542
 
            format (file, "<%d>", inst->bits1.da1.dest_horiz_stride);
 
542
            string (file, "<");
 
543
            err |= control (file, "horiz stride", horiz_stride, inst->bits1.da1.dest_horiz_stride, NULL);
 
544
            string (file, ">");
543
545
            err |= control (file, "dest reg encoding", reg_encoding, inst->bits1.da1.dest_reg_type, NULL);
544
546
        }
545
547
        else
550
552
                                        reg_type_size[inst->bits1.ia1.dest_reg_type]);
551
553
            if (inst->bits1.ia1.dest_indirect_offset)
552
554
                format (file, " %d", inst->bits1.ia1.dest_indirect_offset);
553
 
            string (file, "]");
554
 
            format (file, "<%d>", inst->bits1.ia1.dest_horiz_stride);
 
555
            string (file, "]<");
 
556
            err |= control (file, "horiz stride", horiz_stride, inst->bits1.ia1.dest_horiz_stride, NULL);
 
557
            string (file, ">");
555
558
            err |= control (file, "dest reg encoding", reg_encoding, inst->bits1.ia1.dest_reg_type, NULL);
556
559
        }
557
560
    }