JDK-8150652 : Remove unused code in AArch64 back end
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: compiler
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • CPU: aarch64
  • Submitted: 2016-02-25
  • Updated: 2021-02-01
  • Resolved: 2016-03-17
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9 Other
9 b114Fixed openjdk8u292Fixed
Related Reports
Relates :  
Relates :  
Description
sharedRuntime_aarch64.cpp contains an unused definition of min:

template <class T> static const T& min (const T& a, const T& b) {
  return (a > b) ? b : a;
}

We should delete it.