summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_opcodes.py
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-04-27 11:12:44 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-04-28 21:36:52 -0700
commitf0af5b87ec140875dbc99d579b9b17ab935e27be (patch)
tree9489e9b0dcbff7d1ede236a2dcfd8cb8e8a1be32 /src/compiler/nir/nir_opcodes.py
parentbee40dd7309a1ed3acaa7c92fde199548047318d (diff)
downloadexternal_mesa3d-f0af5b87ec140875dbc99d579b9b17ab935e27be.zip
external_mesa3d-f0af5b87ec140875dbc99d579b9b17ab935e27be.tar.gz
external_mesa3d-f0af5b87ec140875dbc99d579b9b17ab935e27be.tar.bz2
nir/opcodes: Make ldexp take an explicitly 32-bit int
There is no sense in having the double version of ldexp take a 64-bit integer. Instead, let's just take a 32-bit int all the time. This also matches what GLSL does where both variants of ldexp take a regular integer for the exponent argument. Reviewed-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Diffstat (limited to 'src/compiler/nir/nir_opcodes.py')
-rw-r--r--src/compiler/nir/nir_opcodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_opcodes.py b/src/compiler/nir/nir_opcodes.py
index 6f024bf..54ea720 100644
--- a/src/compiler/nir/nir_opcodes.py
+++ b/src/compiler/nir/nir_opcodes.py
@@ -571,7 +571,7 @@ else
dst = ((1u << bits) - 1) << offset;
""")
-opcode("ldexp", 0, tfloat, [0, 0], [tfloat, tint], "", """
+opcode("ldexp", 0, tfloat, [0, 0], [tfloat, tint32], "", """
dst = (bit_size == 64) ? ldexp(src0, src1) : ldexpf(src0, src1);
/* flush denormals to zero. */
if (!isnormal(dst))