hotspot/src/share/vm/opto/callGenerator.hpp
changeset 24002 4e6a72032a99
parent 21099 46e6bbecd9e5
child 24946 24b68ccf3fc4
--- a/hotspot/src/share/vm/opto/callGenerator.hpp	Thu Apr 10 09:26:24 2014 +0200
+++ b/hotspot/src/share/vm/opto/callGenerator.hpp	Thu Apr 10 11:38:12 2014 +0200
@@ -84,6 +84,9 @@
 
   virtual CallStaticJavaNode* call_node() const { ShouldNotReachHere(); return NULL; }
 
+  virtual void set_unique_id(jlong id)          { fatal("unique id only for late inlines"); };
+  virtual jlong unique_id() const               { fatal("unique id only for late inlines"); return 0; };
+
   // Note:  It is possible for a CG to be both inline and virtual.
   // (The hashCode intrinsic does a vtable check and an inlined fast path.)