aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Dupak <dev@jakubdupak.com>2024-02-02 14:33:56 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-08-01 16:52:29 +0200
commitdeca20fa566de2db41237ca43c7531287e980166 (patch)
tree4bbc606b5f321774db949987d3d48e1d772a5b05
parent01f57f4247d561911ee30fa0c4b73586c83ad0b1 (diff)
downloadgcc-deca20fa566de2db41237ca43c7531287e980166.zip
gcc-deca20fa566de2db41237ca43c7531287e980166.tar.gz
gcc-deca20fa566de2db41237ca43c7531287e980166.tar.bz2
gccrs: borrowck: BIR: use callable API
gcc/rust/ChangeLog: * checks/errors/borrowck/rust-bir-builder-expr-stmt.cc (ExprStmtBuilder::visit): Use callable API Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
-rw-r--r--gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc23
1 files changed, 5 insertions, 18 deletions
diff --git a/gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc b/gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc
index 2c91629..ea8107b 100644
--- a/gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc
+++ b/gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc
@@ -248,25 +248,12 @@ ExprStmtBuilder::visit (HIR::CallExpr &expr)
PlaceId fn = visit_expr (*expr.get_fnexpr ());
std::vector<PlaceId> arguments = visit_list (expr.get_arguments ());
- auto *call_type = ctx.place_db[fn].tyty;
- if (auto fn_type = call_type->try_as<TyTy::FnType> ())
- {
- for (size_t i = 0; i < fn_type->get_params ().size (); ++i)
- {
- coercion_site (arguments[i], fn_type->get_params ()[i].second);
- }
- }
- else if (auto fn_ptr_type = call_type->try_as<TyTy::FnPtr> ())
- {
- for (size_t i = 0; i < fn_ptr_type->get_params ().size (); ++i)
- {
- coercion_site (arguments[i],
- fn_ptr_type->get_params ()[i].get_tyty ());
- }
- }
- else
+ const auto fn_type
+ = ctx.place_db[fn].tyty->as<const TyTy::CallableTypeInterface> ();
+
+ for (size_t i = 0; i < fn_type->get_num_params (); ++i)
{
- rust_unreachable ();
+ coercion_site (arguments[i], fn_type->get_param_type_at (i));
}
return_expr (new CallExpr (fn, std::move (arguments)), lookup_type (expr),