Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8260762 | openjdk8u292 | Andrew Hughes | P4 | Resolved | Fixed | b01 |
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.
template <class T> static const T& min (const T& a, const T& b) {
return (a > b) ? b : a;
}
We should delete it.
- backported by
-
JDK-8260762 Remove unused code in AArch64 back end
- Resolved
- relates to
-
JDK-8152130 aarch32: remove unused definition of min
- Resolved
-
JDK-8257192 Integrate AArch64 JIT port into 8u
- Resolved