diff options
author | Antonio Gomes <antoniospg100@gmail.com> | 2024-07-14 01:45:24 -0300 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-17 16:35:53 +0100 |
commit | 57d12c683b3783e2b9460fe5607a4d91f6b67de9 (patch) | |
tree | 496aa805b4843141f55fc548ec687edf2b804825 /gcc/rust/hir/tree/rust-hir-expr.h | |
parent | 8a83c569101b8b84056fb698c5cf67a7f6ae6d91 (diff) | |
download | gcc-57d12c683b3783e2b9460fe5607a4d91f6b67de9.zip gcc-57d12c683b3783e2b9460fe5607a4d91f6b67de9.tar.gz gcc-57d12c683b3783e2b9460fe5607a4d91f6b67de9.tar.bz2 |
gccrs: Improve error messages for operator expressions
gcc/rust/ChangeLog:
* hir/tree/rust-hir-expr.h: Add new get_operator_str method in
ArithmeticOrLogicalExpr and CompoundAssignmentExpr
* hir/tree/rust-hir.cc: Likewise
* typecheck/rust-hir-type-check-expr.cc: Improve error message for
operator expressions to display the correct operator symbol
gcc/testsuite/ChangeLog:
* rust/compile/shadow1.rs: Fix test for new error message
Signed-off-by: Antonio Gomes <antoniospg100@gmail.com>
Diffstat (limited to 'gcc/rust/hir/tree/rust-hir-expr.h')
-rw-r--r-- | gcc/rust/hir/tree/rust-hir-expr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/rust/hir/tree/rust-hir-expr.h b/gcc/rust/hir/tree/rust-hir-expr.h index d8cfe68..ff9fcee 100644 --- a/gcc/rust/hir/tree/rust-hir-expr.h +++ b/gcc/rust/hir/tree/rust-hir-expr.h @@ -417,6 +417,8 @@ public: std::unique_ptr<Expr> &get_lhs () { return main_or_left_expr; } std::unique_ptr<Expr> &get_rhs () { return right_expr; } + std::string get_operator_str () const; + protected: /* Use covariance to implement clone function as returning this object rather * than base */ @@ -766,6 +768,8 @@ public: void visit_lhs (HIRFullVisitor &vis) { main_or_left_expr->accept_vis (vis); } void visit_rhs (HIRFullVisitor &vis) { right_expr->accept_vis (vis); } + std::string get_operator_str () const; + protected: /* Use covariance to implement clone function as returning this object rather * than base */ |