-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove lub_empty from lexical region resolve #115224
Conversation
46f7529
to
78da436
Compare
5417c54
to
ac29e46
Compare
This comment has been minimized.
This comment has been minimized.
ac29e46
to
e2efb6a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r=me after nit
afaict this code uses VarValue::Empty
for fully unconstrained regions? Does it make sense to change its name to VarValue::Unconstrained
@bors r=lcnr
👍, going to address this in a follow-up. |
⌛ Testing commit b92840a with merge 56e35c600b91c901706dc2b7a899e3e05eb88fc9... |
💔 Test failed - checks-actions |
Failing test @bors retry |
☀️ Test successful - checks-actions |
Finished benchmarking commit (69e97df): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Warning ⚠: The following benchmark(s) failed to build:
cc @rust-lang/wg-compiler-performance Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: missing data |
This PR apparently broke the rustc bootstrap benchmark. |
It looks maybe transient? It was a checksum error
and it's not shown on the status page: the PR after this one successfully gathered bootstrap timings, as did the others that followed. Others have encountered similar checksum errors during bootstrap: in #115275 where the verification has the expected checksum that is in the error above:
|
As of my understanding this method made sense when we had
ReEmpty
.Removed
lub_empty
and made the calling site code equivalent.r? @lcnr @compiler-errors