-
Notifications
You must be signed in to change notification settings - Fork 738
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
Add IgnoreDecimalOverflowException codegen flag #5166
Conversation
Jenkins test sanity zlinux JDK8 |
@@ -178,6 +178,8 @@ J9::Z::CodeGenerator::CodeGenerator() : | |||
{ | |||
self()->setHasFixedFrameC_CallingConvention(); | |||
} | |||
|
|||
setIgnoreDecimalOverflowException(false); |
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.
Missing self()->
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.
Fixed in cbc0737
* Determines whether decimal overflow or fixed point overflow checks should be generated for instructions which | ||
* support such by-passes. | ||
*/ | ||
bool ignoreDecimalOverflowException; |
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.
Other classes use a preceding _
for private fields (though arguably it isn't super consistent throughout the code base). Just pointing it out though.
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.
Fixed in cbc0737
This codegen flag determines whether decimal overflow or fixed point overflow checks should be generated for instructions which support such by-passes. Signed-off-by: Filip Jeremic <fjeremic@ca.ibm.com>
Jenkins test sanity zlinux JDK8 |
This codegen flag determines whether decimal overflow or fixed point
overflow checks should be generated for instructions which support such
by-passes.
Signed-off-by: Filip Jeremic fjeremic@ca.ibm.com