diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-04-30 20:15:22 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-09-10 20:18:22 +0200 |
| commit | 940fa9251e3c538a4c9d35d84dcaa09065e45687 (patch) | |
| tree | 86ad3e37e3fca726eb62a2ec30cfc9ddb954b1a8 /compiler/rustc_span/src | |
| parent | b19ae20aada117a589ec238f97c97a98b483f97d (diff) | |
| download | rust-940fa9251e3c538a4c9d35d84dcaa09065e45687.tar.gz rust-940fa9251e3c538a4c9d35d84dcaa09065e45687.zip | |
Rename decode to data_untracked.
Diffstat (limited to 'compiler/rustc_span/src')
| -rw-r--r-- | compiler/rustc_span/src/lib.rs | 4 | ||||
| -rw-r--r-- | compiler/rustc_span/src/span_encoding.rs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/compiler/rustc_span/src/lib.rs b/compiler/rustc_span/src/lib.rs index 60b5ffb1d3e..4f69a59ab93 100644 --- a/compiler/rustc_span/src/lib.rs +++ b/compiler/rustc_span/src/lib.rs @@ -2032,7 +2032,7 @@ where return; } - let span = self.decode(); + let span = self.data_untracked(); span.ctxt.hash_stable(ctx, hasher); span.parent.hash_stable(ctx, hasher); @@ -2042,7 +2042,7 @@ where } if let Some(parent) = span.parent { - let def_span = ctx.def_span(parent).decode(); + let def_span = ctx.def_span(parent).data_untracked(); if def_span.contains(span) { // This span is enclosed in a definition: only hash the relative position. Hash::hash(&TAG_RELATIVE_SPAN, hasher); diff --git a/compiler/rustc_span/src/span_encoding.rs b/compiler/rustc_span/src/span_encoding.rs index f74c259d53d..e9120b98aab 100644 --- a/compiler/rustc_span/src/span_encoding.rs +++ b/compiler/rustc_span/src/span_encoding.rs @@ -101,7 +101,7 @@ impl Span { #[inline] pub fn data(self) -> SpanData { - let data = self.decode(); + let data = self.data_untracked(); if let Some(parent) = data.parent { (*SPAN_TRACK)(parent); } @@ -111,7 +111,7 @@ impl Span { /// Internal function to translate between an encoded span and the expanded representation. /// This function must not be used outside the incremental engine. #[inline] - pub fn decode(self) -> SpanData { + pub fn data_untracked(self) -> SpanData { if self.len_or_tag != LEN_TAG { // Inline format. debug_assert!(self.len_or_tag as u32 <= MAX_LEN); |
