mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
b4c6e19ade
`lookup_debug_loc` finds a file, line, and column, which requires two binary searches. But this call site only needs the file. This commit replaces the call with `lookup_source_file`, which does a single binary search.