-
Notifications
You must be signed in to change notification settings - Fork 737
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
Fix string literal conversion warnings in codegen and il #18465
Fix string literal conversion warnings in codegen and il #18465
Conversation
5d89c3e
to
b114a1a
Compare
I notice that pull request eclipse-omr/omr#7185 contains changes to add |
Honestly I don't think I ever noticed the inconsistency. Fixed! |
b114a1a
to
c0805bf
Compare
c0805bf
to
2ba413c
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.
Looks good. Thanks for the updates!
@dylanjtuttle, may I ask you to squash the new commit that addresses review comments into the other existing commits? |
2ba413c
to
0edf7ba
Compare
Jenkins test sanity.functional,sanity.openjdk all jdk8,jdk11,jdk17,jdk21 depends eclipse-omr/omr#7185 |
Fix string literal conversion warnings in runtime/compiler/codegen Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in runtime/compiler/il Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in runtime/compiler/runtime Signed-off-by: Dylan Tuttle <[email protected]>
0edf7ba
to
874fe48
Compare
Work towards fixing AIX warnings about assigning string literals to non-const char pointers by adding 'const' qualifiers to some string variables and parameters (or worst case scenario, casting to
(char *)
) in runtime/compiler/codegen and runtime/compiler/il.This PR contributes to (but does not close) #14859
This PR must be merged in coordination with eclipse-omr/omr#7185