From 83feca39ba06e865ee4588e607a27e498944f62d Mon Sep 17 00:00:00 2001 From: Owen Avery Date: Thu, 31 Aug 2023 15:58:22 -0400 Subject: gccrs: Move block-related methods into base class Backend gcc/rust/ChangeLog: * rust-backend.h (Backend::block): Make non-virtual. (Backend::block_add_statements): Likewise. (Gcc_backend::block): Remove. (Gcc_backend::block_add_statements): Remove. * rust-gcc.cc (Gcc_backend::block): Rename to ... (Backend::block): ... here. (Gcc_backend::block_add_statements): Rename to ... (Backend::block_add_statements): ... here. Signed-off-by: Owen Avery --- gcc/rust/rust-gcc.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/rust/rust-gcc.cc') diff --git a/gcc/rust/rust-gcc.cc b/gcc/rust/rust-gcc.cc index 7ef442b..330772f 100644 --- a/gcc/rust/rust-gcc.cc +++ b/gcc/rust/rust-gcc.cc @@ -1867,9 +1867,9 @@ Backend::statement_list (const std::vector &statements) // the Bblock. tree -Gcc_backend::block (tree fndecl, tree enclosing, - const std::vector &vars, - location_t start_location, location_t) +Backend::block (tree fndecl, tree enclosing, + const std::vector &vars, location_t start_location, + location_t) { tree block_tree = make_node (BLOCK); if (enclosing == NULL) @@ -1928,8 +1928,8 @@ Gcc_backend::block (tree fndecl, tree enclosing, // Add statements to a block. void -Gcc_backend::block_add_statements (tree bind_tree, - const std::vector &statements) +Backend::block_add_statements (tree bind_tree, + const std::vector &statements) { tree stmt_list = NULL_TREE; for (std::vector::const_iterator p = statements.begin (); -- cgit v1.1