Skip to content

Commit 5ecc8ad

Browse files
committed
Auto merge of #89049 - Aaron1011:caching-sourcemap-assert, r=Mark-Simulacrum
Convert `debug_assert` to `assert` in `CachingSourceMapView` I suspect that there's a bug somewhere in this code, which is leading to the `predicates_of` ICE being seen in #89035
2 parents 7b5f952 + 95bea15 commit 5ecc8ad

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

compiler/rustc_span/src/caching_source_map_view.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,13 @@ impl<'sm> CachingSourceMapView<'sm> {
215215

216216
// Span lo and hi may equal line end when last line doesn't
217217
// end in newline, hence the inclusive upper bounds below.
218-
debug_assert!(span_data.lo >= lo.line.start);
219-
debug_assert!(span_data.lo <= lo.line.end);
220-
debug_assert!(span_data.hi >= hi.line.start);
221-
debug_assert!(span_data.hi <= hi.line.end);
222-
debug_assert!(lo.file.contains(span_data.lo));
223-
debug_assert!(lo.file.contains(span_data.hi));
224-
debug_assert_eq!(lo.file_index, hi.file_index);
218+
assert!(span_data.lo >= lo.line.start);
219+
assert!(span_data.lo <= lo.line.end);
220+
assert!(span_data.hi >= hi.line.start);
221+
assert!(span_data.hi <= hi.line.end);
222+
assert!(lo.file.contains(span_data.lo));
223+
assert!(lo.file.contains(span_data.hi));
224+
assert_eq!(lo.file_index, hi.file_index);
225225

226226
Some((
227227
lo.file.clone(),

0 commit comments

Comments
 (0)