Skip to content

Commit

Permalink
Auto merge of rust-lang#104164 - cjgillot:u64-cache, r=compiler-errors
Browse files Browse the repository at this point in the history
Use 64 bits for incremental cache in-file positions

We currently use a 32-bit integer to encode byte positions into the incremental cache.
This is not enough when the query chache file is >4GB.

As the overflow check was a `debug_assert`, it was removed in released compilers, making compilation succeed silently.
At the next compilation, cache decoding would try to read unrelated data because of garbled file position, triggering an ICE.

Fixes rust-lang#79786
(I'm closing that bug since it the original report and the subsequent questions are probably different instances. A new bug should be opened for new instances of that ICE.)
  • Loading branch information
bors committed Nov 10, 2022
2 parents 07b89d6 + 0c25e48 commit cad86e9
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit cad86e9

Please sign in to comment.