diff options
author | Aaqa Ishtyaq <aaqaishtyaq@gmail.com> | 2023-02-16T08·59+0530 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-02-16T22·42+0000 |
commit | faffb2a4cb7482d8c7437809b113066244251084 (patch) | |
tree | 8878ae952d6ab5cd94b63aaf6b5de53ea1e748db /tvix/eval/src/compiler | |
parent | bfe6cace5ed1565794801ef3d3bfffaffb360330 (diff) |
refactor(tvix/eval): remove redundant clone r/5857
This CL removes redundant clone from value which is going to be dropped without further use. Change-Id: Ibd2a724853c5cfbf8ca40bf0b3adf0fab89b9be5 Signed-off-by: Aaqa Ishtyaq <aaqaishtyaq@gmail.com> Reviewed-on: https://cl.tvl.fyi/c/depot/+/8125 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/compiler')
-rw-r--r-- | tvix/eval/src/compiler/optimiser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler/optimiser.rs b/tvix/eval/src/compiler/optimiser.rs index 4c28b79a851e..48960d355cc6 100644 --- a/tvix/eval/src/compiler/optimiser.rs +++ b/tvix/eval/src/compiler/optimiser.rs @@ -9,7 +9,7 @@ use ast::Expr; pub(super) fn optimise_expr(c: &mut Compiler, slot: LocalIdx, expr: ast::Expr) -> ast::Expr { match expr { Expr::BinOp(_) => optimise_bin_op(c, slot, expr), - _ => expr.to_owned(), + _ => expr, } } |