diff options
Diffstat (limited to 'gcc/rust/backend/rust-compile-fnparam.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-fnparam.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/rust/backend/rust-compile-fnparam.h b/gcc/rust/backend/rust-compile-fnparam.h index 10b4efb..9b50b19 100644 --- a/gcc/rust/backend/rust-compile-fnparam.h +++ b/gcc/rust/backend/rust-compile-fnparam.h @@ -30,9 +30,9 @@ class CompileFnParam : private HIRCompileBase, protected HIR::HIRPatternVisitor public: static Bvariable *compile (Context *ctx, tree fndecl, HIR::FunctionParam *param, tree decl_type, - Location locus); + location_t locus); static Bvariable *compile (Context *ctx, tree fndecl, HIR::Pattern *param, - tree decl_type, Location locus); + tree decl_type, location_t locus); void visit (HIR::IdentifierPattern &pattern) override; void visit (HIR::WildcardPattern &pattern) override; @@ -50,13 +50,13 @@ public: void visit (HIR::TuplePattern &) override {} private: - CompileFnParam (Context *ctx, tree fndecl, tree decl_type, Location locus); + CompileFnParam (Context *ctx, tree fndecl, tree decl_type, location_t locus); tree create_tmp_param_var (tree decl_type); tree fndecl; tree decl_type; - Location locus; + location_t locus; Bvariable *compiled_param; }; @@ -64,7 +64,7 @@ class CompileSelfParam : private HIRCompileBase { public: static Bvariable *compile (Context *ctx, tree fndecl, HIR::SelfParam &self, - tree decl_type, Location locus); + tree decl_type, location_t locus); }; } // namespace Compile |