-
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
Relocate OMR::SupportsBigDecimalLongLookasideVersioning to OpenJ9 #3884
Relocate OMR::SupportsBigDecimalLongLookasideVersioning to OpenJ9 #3884
Conversation
The OMR::CodeGenerator class defines functionsgetSupportsBigDecimalLongLookasideVersioning and setSupportsBigDecimalLongLookasideVersioning that are not used in OMR. They only have relevance in OpenJ9 and should be relocated to the J9::CodeGenerator class there. Issue: eclipse-omr#1882 Signed-off-by: Bohao(Aaron) Wang <[email protected]>
0c51805
to
cb04d3b
Compare
@genie-omr build all |
@vijaysun-omr ping |
Wondering if we still even need this at OpenJ9 now that we use OpenJDK's versions of BigDecimal/BigInteger. Food for thought. |
If it is deprecated then removal is a good idea, but only if truly deprecated. |
We could probably just merge this as this patch removes the filed anyways. Then we could open a new PR to delete the field from OpenJ9 if it is truly deprecated. |
@vijaysun-omr @0xdaryl Do we merge this? |
@vijaysun-omr ping? |
Looks very safe and checks have passed. Merging. |
The
OMR::CodeGenerator
class definesfunctionsgetSupportsBigDecimalLongLookasideVersioning
andsetSupportsBigDecimalLongLookasideVersioning
that are not used in OMR.They only have relevance in OpenJ9 and should be relocated to the
J9::CodeGenerator
class there.Closes: #1882
Signed-off-by: Bohao(Aaron) Wang [email protected]