Remove subsumed fix for #4862#12932
Merged
Merged
Conversation
Member
|
It's ironic that we spent a fair amount of effort discussing this backtracking code, which turns out to be unnecessary after all :-) Two questions:
|
Contributor
Author
|
gasche
approved these changes
Jan 25, 2024
Member
gasche
left a comment
There was a problem hiding this comment.
I'm still not sure why the example works when it did not work before, but I can tell that the code is vastly simpler so I'm all for it if it still passes the testsuite. Approved.
Contributor
Author
|
Since the original fix was introduced in 3.12, before the addition of GADTs, a lot has changed since then. It is not too surprising that this kind of bug was actually fixed by other changes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#4862 was fixed in 3.12 by using backtracking in
Typecore.type_label_exp.However, it seems that this has been useless for a long time now (checked that the example compiles fine in 4.07 without backtracking).
So let us remove this useless backtracking.
Also, properly call
enforce_current_levelwhen there are no variables, and remove a superfluousgeneralize_structureintype_exp/Pexp_let.