Home | History | Annotate | Download | only in ia64
      1 // Make sure error messages on 'alloc' don't needlessly refer to operand 1
      2 // (which gets parsed late) when only one of the other operands is wrong.
      3 
      4 	.text
      5 
      6 alloc:
      7 	alloc		r2 = ar.pfs, x, 0, 0, 0
      8 	alloc		r2 = ar.pfs, 0, x, 0, 0
      9 	alloc		r2 = ar.pfs, 0, 0, x, 0
     10 	alloc		r2 = ar.pfs, 0, 0, 0, x
     11 	alloc		r3 = x, 0, 0, 0
     12 	alloc		r3 = 0, x, 0, 0
     13 	alloc		r3 = 0, 0, x, 0
     14 	alloc		r3 = 0, 0, 0, x
     15