Re: [Mesa-dev] [PATCH 48.1/59 v2] nir: Shift count for shift opcodes is always 32-bits

2016-10-27 Thread Connor Abbott
On Thu, Oct 27, 2016 at 10:06 PM, Ian Romanick wrote: > From: Ian Romanick > > Previously both sources were unsized. This caused problems when the > thing being shifted was 64-bit but the shift count was 32-bit. The > expectation in NIR is that

[Mesa-dev] [PATCH 48.1/59 v2] nir: Shift count for shift opcodes is always 32-bits

2016-10-27 Thread Ian Romanick
From: Ian Romanick Previously both sources were unsized. This caused problems when the thing being shifted was 64-bit but the shift count was 32-bit. The expectation in NIR is that all unsized sources (and destination) will ultimately have the same size. The changes