-
Notifications
You must be signed in to change notification settings - Fork 732
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
Prevent redundant call transformation #20951
Prevent redundant call transformation #20951
Conversation
eb013df
to
26276d4
Compare
I tested manually. Works as expected. currently running some JDK8, 11, and 21 builds. |
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.
I think this change looks good. Thanks!
Jenkins test sanity.functional,sanity.openjdk xlinux,alinux jdk8,jdk17,jdk21 |
Sorry I missed this, but once testing has completed, may I ask you to update the commit comment so that each line is no more than 72 characters long, as described in the Commit Guidelines? |
@ehsankianifar, it looks CI testing ran successfully. May I ask you to update the commit comment? |
Redundant getComponentType() transformation was observed in value-propagation optimization. Adding condition to perform this transformation only in last time through run. Signed-off-by: Ehsan Kiani Far <[email protected]>
All the checks passed. I Amend the commit to fix Description length. |
26276d4
to
c5e34bb
Compare
This is a very safe change, and testing was completely successful. Merging. |
Redundant getComponentType() transformation was observed in value propagation optimization. Adding condition to perform this transformation only in last time through run.
@hzongaro