-
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 compile, runtime, control, ras, infra #7187
Conversation
a4bc22d
to
7c5f89b
Compare
b90378c
to
dbde370
Compare
dbde370
to
e92ee0b
Compare
e92ee0b
to
5b7ddf9
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! I think the changes look good. May I ask you to squash the changes from commit 5b7ddf9 into your other commits?
Fix string literal conversion warnings in compiler/compile Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/runtime Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/control Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/ras Signed-off-by: Dylan Tuttle <[email protected]>
Fix string literal conversion warnings in compiler/infra and related functions Signed-off-by: Dylan Tuttle <[email protected]>
5b7ddf9
to
f148db8
Compare
Jenkins build all |
It looks like a riscv test timed out. Rerunning. . . . Jenkins build riscv |
x86-64 macOS test failures are due to known issues #7181 and #6516. |
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 compile, runtime, control, ras, and infra.
This PR contributes to (but does not close) eclipse-openj9/openj9#14859
This PR depends on:
and must be merged in coordination with eclipse-openj9/openj9#18470