-
Notifications
You must be signed in to change notification settings - Fork 10.5k
SimplifyCFG: Handle checked_cast_addr_br with consumption kind copy_on_success #33839
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
Conversation
@swift-ci test |
@swift-ci benchmark |
Performance: -O
Code size: -OPerformance: -Osize
Code size: -OsizePerformance: -Onone
Code size: -swiftlibsHow to read the dataThe tables contain differences in performance which are larger than 8% and differences in code size which are larger than 1%.If you see any unexpected regressions, you should consider fixing the Noise: Sometimes the performance results (not code size!) contain false Hardware Overview
|
Build failed |
Build failed |
…n_success We didn't optimize such casts with copy_on_success, which could result in very stupid code, e.g. for type identity casts (which should be a no-op).
1a91e25
to
0ec6eb2
Compare
@swift-ci test |
1 similar comment
@swift-ci test |
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.
Looks good to me! Also I really appreciate that you added both trivial/non-trivial tests!
We didn't optimize such casts with copy_on_success, which could result in very stupid code, e.g. for type identity casts (which should be a no-op).