-
Notifications
You must be signed in to change notification settings - Fork 397
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, p, il, infra, optimizer #7185
Conversation
29fd7aa
to
a4e62df
Compare
a4e62df
to
629915b
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.
I think the changes look good overall. Just one question and a comment on typo. in some existing code. Thanks!
629915b
to
de4ab65
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.
Thanks for the updates! The changes look good. May I ask to squash the changes from commit de4ab65 into your other commits?
de4ab65
to
1ecb587
Compare
Jenkins build all |
It looks like a riscv test timed out. Rerunning. . . . Jenkins build riscv |
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.
Thanks for the new commit b0fb5d5 with a change in support of an upstream pull request. May I ask you to squash it into one of the existing commits? Then I'll rerun pull request testing.
Fix string literal conversion warnings in compiler/codegen Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/p Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/il Signed-off-by: Dylan Tuttle <[email protected]>
b0fb5d5
to
3abe74b
Compare
Jenkins build all |
Windows failure appears to be due to infrastructure issues. I'm not clear on the reason for the riscv failures, but I don't think they're related to this change. Rerunning both. Jenkins build win,riscv |
Trying riscv once more Jenkins build riscv |
Fix string literal conversion warnings in compiler/optimizer Signed-off-by: Dylan Tuttle <[email protected]>
3abe74b
to
4ea4731
Compare
Jenkins build all |
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 codegen, p, il, and optimizer.This PR contributes to (but does not close) eclipse-openj9/openj9#14859
This PR must be merged in coordination with eclipse-openj9/openj9#18465