diff options
author | Karol Herbst <[email protected]> | 2018-04-26 21:06:08 +0200 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2018-07-24 20:40:05 +0200 |
commit | 7f95564a22d11ee3f54915ee02f9fa1f78c6adcf (patch) | |
tree | 81c6b13651bd7f88acec7b1a7e470491a984da72 /src/amd | |
parent | 2083cfb6eba9a9e7441c44fa0c8402dbc216eb3a (diff) |
nir: rename f2f16_undef to f2f16
we need rounding modes on other conversions involving floats and it is easier
to rename f2f16_undef than renaming all the other ones.
v2: rebased on master
Reviewed-by: Jason Ekstrand <[email protected]>
Acked-by: Rob Clark <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 542b880e888..44361be0d35 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -889,7 +889,7 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr) result = LLVMBuildExtractElement(ctx->ac.builder, result, ctx->ac.i32_0, ""); break; case nir_op_f2f16_rtne: - case nir_op_f2f16_undef: + case nir_op_f2f16: case nir_op_f2f32: case nir_op_f2f64: src[0] = ac_to_float(&ctx->ac, src[0]); |