File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
runtime/compiler/optimizer Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1706,13 +1706,13 @@ bool J9::RecognizedCallTransformer::isInlineable(TR::TreeTop* treetop)
1706
1706
case TR::java_lang_Long_rotateRight:
1707
1707
return comp ()->target ().cpu .getSupportsHardware64bitRotate ();
1708
1708
case TR::java_lang_Integer_compress:
1709
- return comp ()->target (). cpu . getSupportsHardware32bitCompress ();
1709
+ return cg ()->getSupports32BitCompress ();
1710
1710
case TR::java_lang_Long_compress:
1711
- return comp ()->target (). cpu . getSupportsHardware64bitCompress ();
1711
+ return cg ()->getSupports64BitCompress ();
1712
1712
case TR::java_lang_Integer_expand:
1713
- return comp ()->target (). cpu . getSupportsHardware32bitExpand ();
1713
+ return cg ()->getSupports32BitExpand ();
1714
1714
case TR::java_lang_Long_expand:
1715
- return comp ()->target (). cpu . getSupportsHardware64bitExpand ();
1715
+ return cg ()->getSupports64BitExpand ();
1716
1716
case TR::java_lang_Math_abs_I:
1717
1717
case TR::java_lang_Math_abs_L:
1718
1718
return cg ()->supportsIntAbs ();
You can’t perform that action at this time.
0 commit comments