You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
As suggested by @rogpeppe, if we know we're after a run-time crash, we can take many assumptions safely that we can't if we're after compiler bugs. Some examples:
Code that isn't being run can be removed (via code coverage)
Statements after a panic/return can be removed (likely covered by the item above)
Packace members (vars, consts, types) that aren't used can be removed (perhaps exclude exported ones)
Anything else?
Also note that none of these should make the tool better at reducing a program (I think?). They should only make it faster since it can get rid of many things at once instead of one by one.
The text was updated successfully, but these errors were encountered:
As suggested by @rogpeppe, if we know we're after a run-time crash, we can take many assumptions safely that we can't if we're after compiler bugs. Some examples:
Anything else?
Also note that none of these should make the tool better at reducing a program (I think?). They should only make it faster since it can get rid of many things at once instead of one by one.
The text was updated successfully, but these errors were encountered: