src/hotspot/cpu/sparc/frame_sparc.inline.hpp
changeset 53547 9d1a788dea3d
parent 53244 9807daeb47c4
--- a/src/hotspot/cpu/sparc/frame_sparc.inline.hpp	Tue Jan 29 14:34:26 2019 +0100
+++ b/src/hotspot/cpu/sparc/frame_sparc.inline.hpp	Tue Jan 29 14:43:05 2019 +0100
@@ -57,11 +57,6 @@
 // frame.
 inline intptr_t* frame::id(void) const { return unextended_sp(); }
 
-// Relationals on frames based
-// Return true if the frame is younger (more recent activation) than the frame represented by id
-inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
-                                                    return this->id() < id ; }
-
 // Return true if the frame is older (less recent activation) than the frame represented by id
 inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
                                                     return this->id() > id ; }