aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-expr.cc
diff options
context:
space:
mode:
authorJakub Dupak <dev@jakubdupak.com>2023-12-14 12:54:11 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-30 12:36:51 +0100
commit14025f735967c1909f2e722210f8c4e694b9ee51 (patch)
treec016d16ba3bc9b7c1dc65f0fc9c67308264499b3 /gcc/rust/backend/rust-compile-expr.cc
parentd8e8ad5493848a3b8f5883817770da2aba5d3edd (diff)
downloadgcc-14025f735967c1909f2e722210f8c4e694b9ee51.zip
gcc-14025f735967c1909f2e722210f8c4e694b9ee51.tar.gz
gcc-14025f735967c1909f2e722210f8c4e694b9ee51.tar.bz2
gccrs: TyTy: Refactor FnType deprecated API
gcc/rust/ChangeLog: * backend/rust-compile-expr.cc (CompileExpr::visit): Use new API. * typecheck/rust-tyty-call.cc (TypeCheckCallExpr::visit): Use new API. * typecheck/rust-tyty-cmp.h: Remove old API. * typecheck/rust-tyty.cc (FnPtr::is_equal): Use new API. * typecheck/rust-tyty.h: Remove old API. * typecheck/rust-unify.cc (UnifyRules::expect_fnptr): Use new API. Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
Diffstat (limited to 'gcc/rust/backend/rust-compile-expr.cc')
-rw-r--r--gcc/rust/backend/rust-compile-expr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.cc b/gcc/rust/backend/rust-compile-expr.cc
index e0917f6..596b848 100644
--- a/gcc/rust/backend/rust-compile-expr.cc
+++ b/gcc/rust/backend/rust-compile-expr.cc
@@ -1198,7 +1198,7 @@ CompileExpr::visit (HIR::CallExpr &expr)
if (base->get_kind () == TyTy::TypeKind::FNPTR)
{
const TyTy::FnPtr *fn = static_cast<const TyTy::FnPtr *> (base);
- *result = fn->param_at (index);
+ *result = fn->get_param_type_at (index);
return true;
}