]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gccrs: borrowck: BIR: use callable API
authorJakub Dupak <dev@jakubdupak.com>
Fri, 2 Feb 2024 13:33:56 +0000 (14:33 +0100)
committerArthur Cohen <arthur.cohen@embecosm.com>
Thu, 1 Aug 2024 14:52:29 +0000 (16:52 +0200)
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>
gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc

index 2c916294ca7ad5d8224f8b7d955b9ce1b0001c11..ea8107b1fb760545433cac55831a45c8672d326c 100644 (file)
@@ -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),