diff options
author | Eduardo Lima Mitev <[email protected]> | 2017-07-01 08:01:21 +0200 |
---|---|---|
committer | Jose Maria Casanova Crespo <[email protected]> | 2017-12-06 08:57:18 +0100 |
commit | 2af63683bc61e1efb8f634697770d314ef07c882 (patch) | |
tree | c568152d1fd863e1a405603bb2bf5df593d55d07 /src/compiler/nir | |
parent | d7114454305a64f9624d7b1fcc726d97d7f1835a (diff) |
nir: Populate conversion opcodes to 16-bit types
This will include the following NIR ALU opcodes:
* nir_op_i2i16
* nir_op_i2f16
* nir_op_u2u16
* nir_op_u2f16
* nir_op_f2i16
* nir_op_f2u16
* nir_op_f2f16
v2: Remove "from" 16-bit in commit subject (Topi Pohjolainen)
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir')
-rw-r--r-- | src/compiler/nir/nir_opcodes_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_opcodes_c.py b/src/compiler/nir/nir_opcodes_c.py index a1db54f05a8..02bb4738ed8 100644 --- a/src/compiler/nir/nir_opcodes_c.py +++ b/src/compiler/nir/nir_opcodes_c.py @@ -62,7 +62,7 @@ nir_type_conversion_op(nir_alu_type src, nir_alu_type dst) % endif % endif switch (dst_bit_size) { -% for dst_bits in [32, 64]: +% for dst_bits in [16, 32, 64]: case ${dst_bits}: return ${'nir_op_{0}2{1}{2}'.format(src_t[0], dst_t[0], dst_bits)}; % endfor |