diff options
Diffstat (limited to 'gcc/rust/rust-backend.h')
-rw-r--r-- | gcc/rust/rust-backend.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/rust/rust-backend.h b/gcc/rust/rust-backend.h index 1dd4aba..be23fd3 100644 --- a/gcc/rust/rust-backend.h +++ b/gcc/rust/rust-backend.h @@ -163,6 +163,13 @@ public: Btype *result_struct, Location location) = 0; + virtual Btype * + function_type_varadic (const Btyped_identifier &receiver, + const std::vector<Btyped_identifier> ¶meters, + const std::vector<Btyped_identifier> &results, + Btype *result_struct, Location location) + = 0; + virtual Btype *function_ptr_type (Btype *result, const std::vector<Btype *> &praameters, Location location) |