Skip to content

Commit d0c60cf

Browse files
committed
Change access protection for performHelperCall on x86
It can be useful to call this static function outside of the TreeEvaluator hierarchy, so make it public access. Signed-off-by: Daryl Maier <[email protected]>
1 parent c920ac3 commit d0c60cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/x/codegen/OMRTreeEvaluator.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,9 +544,11 @@ class OMR_EXTENSIBLE TreeEvaluator: public OMR::TreeEvaluator
544544
int repMovsThresholdBytes,
545545
TR::LabelSymbol *repMovsLabel,
546546
TR::LabelSymbol *mainEndLabel);
547-
protected:
548547

549548
static TR::Register *performHelperCall(TR::Node *node, TR::SymbolReference *helperSymRef, TR::ILOpCodes helperCallOpCode, bool spillFPRegs, TR::CodeGenerator *cg);
549+
550+
protected:
551+
550552
static TR::Register *performIload(TR::Node *node, TR::MemoryReference *sourceMR, TR::CodeGenerator *cg);
551553
static TR::Register *performFload(TR::Node *node, TR::MemoryReference *sourceMR, TR::CodeGenerator *cg);
552554
static TR::Register *performDload(TR::Node *node, TR::MemoryReference *sourceMR, TR::CodeGenerator *cg);

0 commit comments

Comments
 (0)