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.
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.