diff options
Diffstat (limited to 'gcc/rust/util')
-rw-r--r-- | gcc/rust/util/rust-hir-map.cc | 2 | ||||
-rw-r--r-- | gcc/rust/util/rust-hir-map.h | 2 | ||||
-rw-r--r-- | gcc/rust/util/rust-identifier.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gcc/rust/util/rust-hir-map.cc b/gcc/rust/util/rust-hir-map.cc index 9510a5b..c969636 100644 --- a/gcc/rust/util/rust-hir-map.cc +++ b/gcc/rust/util/rust-hir-map.cc @@ -792,7 +792,7 @@ Mappings::lookup_hir_to_node (HirId id, NodeId *ref) } void -Mappings::insert_location (HirId id, Location locus) +Mappings::insert_location (HirId id, location_t locus) { locations[id] = locus; } diff --git a/gcc/rust/util/rust-hir-map.h b/gcc/rust/util/rust-hir-map.h index 5b8e09c..7f3f4fb 100644 --- a/gcc/rust/util/rust-hir-map.h +++ b/gcc/rust/util/rust-hir-map.h @@ -171,7 +171,7 @@ public: bool lookup_node_to_hir (NodeId id, HirId *ref); bool lookup_hir_to_node (HirId id, NodeId *ref); - void insert_location (HirId id, Location locus); + void insert_location (HirId id, location_t locus); Location lookup_location (HirId id); bool resolve_nodeid_to_stmt (NodeId id, HIR::Stmt **stmt); diff --git a/gcc/rust/util/rust-identifier.h b/gcc/rust/util/rust-identifier.h index adf1c07..cbb743c 100644 --- a/gcc/rust/util/rust-identifier.h +++ b/gcc/rust/util/rust-identifier.h @@ -27,9 +27,9 @@ namespace Rust { struct RustIdent { Resolver::CanonicalPath path; - Location locus; + location_t locus; - RustIdent (const Resolver::CanonicalPath &path, Location locus) + RustIdent (const Resolver::CanonicalPath &path, location_t locus) : path (path), locus (locus) {} |