diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-27 14:18:41 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-28 17:17:48 +0000 |
commit | 7fe3c145d9728480106e8c5b4e97b289104e50e8 (patch) | |
tree | 305388dbbdf2fe631bdd5aada0b05d7a553f3905 /src/panfrost/bifrost/bifrost_compile.c | |
parent | 95fc71ece29f97b093d5eb7d1146f1b55c61aae5 (diff) |
pan/bi: Remove bi_round_op
No purpose.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4789>
Diffstat (limited to 'src/panfrost/bifrost/bifrost_compile.c')
-rw-r--r-- | src/panfrost/bifrost/bifrost_compile.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c index a23a6121cce..c051b169af2 100644 --- a/src/panfrost/bifrost/bifrost_compile.c +++ b/src/panfrost/bifrost/bifrost_compile.c @@ -639,19 +639,15 @@ emit_alu(bi_context *ctx, nir_alu_instr *instr) alu.cond = bi_cond_for_nir(instr->op, false); break; case nir_op_fround_even: - alu.op.round = BI_ROUND_MODE; alu.roundmode = BIFROST_RTE; break; case nir_op_fceil: - alu.op.round = BI_ROUND_MODE; alu.roundmode = BIFROST_RTP; break; case nir_op_ffloor: - alu.op.round = BI_ROUND_MODE; alu.roundmode = BIFROST_RTN; break; case nir_op_ftrunc: - alu.op.round = BI_ROUND_MODE; alu.roundmode = BIFROST_RTZ; break; default: |