diff options
author | Philip Herron <philip.herron@embecosm.com> | 2022-02-24 16:22:29 +0000 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2022-02-24 16:39:12 +0000 |
commit | d8351d9168f92c997858fdb25942c05dc832f330 (patch) | |
tree | c5937fb363281a91eb7230141f308b932528fc09 /gcc/rust/backend/rust-compile-expr.h | |
parent | 5d5396d52277be5e2c82249f889a78d909f29084 (diff) | |
download | gcc-d8351d9168f92c997858fdb25942c05dc832f330.zip gcc-d8351d9168f92c997858fdb25942c05dc832f330.tar.gz gcc-d8351d9168f92c997858fdb25942c05dc832f330.tar.bz2 |
Decouple the HIR::OperatorExpr from resolving operator overloads
This means we can reuse the same code for operations that are not
HIR::OperatorExpr's such as ArrayIndexExpr which can resolve to
core::ops::index lang items.
Diffstat (limited to 'gcc/rust/backend/rust-compile-expr.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.h b/gcc/rust/backend/rust-compile-expr.h index 7fd708c..f2b4df8 100644 --- a/gcc/rust/backend/rust-compile-expr.h +++ b/gcc/rust/backend/rust-compile-expr.h @@ -799,7 +799,7 @@ protected: tree resolve_operator_overload (Analysis::RustLangItem::ItemType lang_item_type, - HIR::OperatorExpr &expr, tree lhs, tree rhs, + HIR::OperatorExprMeta expr, tree lhs, tree rhs, HIR::Expr *lhs_expr, HIR::Expr *rhs_expr); tree compile_bool_literal (const HIR::LiteralExpr &expr, |