< prev index next >

src/share/vm/runtime/rframe.cpp

Print this page

        

@@ -153,11 +153,11 @@
   _invocations = _method->invocation_count() + _method->backedge_count();
 }
 
 void RFrame::print(const char* kind) {
 #ifndef PRODUCT
-#ifdef COMPILER2
+#if defined(COMPILER2) || INCLUDE_JVMCI
   int cnt = top_method()->interpreter_invocation_count();
 #else
   int cnt = top_method()->invocation_count();
 #endif
   tty->print("%3d %s ", _num, is_interpreted() ? "I" : "C");
< prev index next >