diff --git a/compiler/il/OMRNode.cpp b/compiler/il/OMRNode.cpp index eedab756b1d..47b60d7d30e 100644 --- a/compiler/il/OMRNode.cpp +++ b/compiler/il/OMRNode.cpp @@ -7522,26 +7522,6 @@ OMR::Node::setIsBigDecimalLoad() _flags.set(bigDecimal_load); } - - -bool -OMR::Node::shouldAlignTLHAlloc() - { - TR_ASSERT(self()->getOpCodeValue() == TR::New, "Opcode value must be TR::New"); - return _flags.testAny(alignTLHAlloc); - } - -void -OMR::Node::setAlignTLHAlloc(bool v) - { - TR::Compilation * c = TR::comp(); - TR_ASSERT(self()->getOpCodeValue() == TR::New, "Opcode value must be TR::New"); - if (performNodeTransformation2(c, "O^O NODE FLAGS: Setting align on TLH flag on node %p to %d\n", self(), v)) - _flags.set(alignTLHAlloc, v); - } - - - bool OMR::Node::isCopyToNewVirtualRegister() { diff --git a/compiler/il/OMRNode.hpp b/compiler/il/OMRNode.hpp index 8277d906413..e5b078f4056 100644 --- a/compiler/il/OMRNode.hpp +++ b/compiler/il/OMRNode.hpp @@ -1510,10 +1510,6 @@ class OMR_EXTENSIBLE Node bool isLoadAndTest() { return _flags.testAny(loadAndTest); } void setIsLoadAndTest(bool v) { _flags.set(loadAndTest, v); } - // Flag for TR::New - bool shouldAlignTLHAlloc(); - void setAlignTLHAlloc(bool v); - // Flag used by TR_PassThrough bool isCopyToNewVirtualRegister(); void setCopyToNewVirtualRegister(bool v = true); @@ -2021,10 +2017,7 @@ class OMR_EXTENSIBLE Node // Flag used by iload, iiload, lload, ilload, aload, iaload loadAndTest = 0x00008000, - // Flag used by TR::New when the codegen supports - // alignment on the TLH when allocating the object - // - alignTLHAlloc = 0x00002000, + // Available = 0x00002000, // AVAILABLE FOR USE // Flag used by TR_PassThrough copyToNewVirtualRegister = 0x00001000,