From 198caf598ebc9abdcda178cae05154fa7b21ebfa Mon Sep 17 00:00:00 2001 From: "Bohao(Aaron) Wang" Date: Wed, 22 May 2019 15:11:59 -0400 Subject: [PATCH] Relocate OMR::SupportsBigDecimalLongLookasideVersioning to OpenJ9 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: #1882 Signed-off-by: Bohao(Aaron) Wang --- compiler/codegen/OMRCodeGenerator.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/compiler/codegen/OMRCodeGenerator.hpp b/compiler/codegen/OMRCodeGenerator.hpp index 11c06efc8b7..d83d7d67f95 100644 --- a/compiler/codegen/OMRCodeGenerator.hpp +++ b/compiler/codegen/OMRCodeGenerator.hpp @@ -1512,9 +1512,6 @@ class OMR_EXTENSIBLE CodeGenerator bool getAccessStaticsIndirectly() {return _flags1.testAny(AccessStaticsIndirectly);} void setAccessStaticsIndirectly(bool b) {_flags1.set(AccessStaticsIndirectly, b);} - bool getSupportsBigDecimalLongLookasideVersioning() { return _flags3.testAny(SupportsBigDecimalLongLookasideVersioning);} - void setSupportsBigDecimalLongLookasideVersioning() { _flags3.set(SupportsBigDecimalLongLookasideVersioning);} - bool getSupportsBDLLHardwareOverflowCheck() { return _flags3.testAny(SupportsBDLLHardwareOverflowCheck);} void setSupportsBDLLHardwareOverflowCheck() { _flags3.set(SupportsBDLLHardwareOverflowCheck);} @@ -1758,7 +1755,7 @@ class OMR_EXTENSIBLE CodeGenerator // AVAILABLE = 0x00000400, HasCCCarry = 0x00000800, // AVAILABLE = 0x00001000, - SupportsBigDecimalLongLookasideVersioning = 0x00002000, + // AVAILABLE = 0x00002000, RemoveRegisterHogsInLowerTreesWalk = 0x00004000, SupportsBDLLHardwareOverflowCheck = 0x00008000, InlinedGetCurrentThreadMethod = 0x00010000,