< prev index next >

src/hotspot/share/runtime/frame.hpp

Print this page

        

@@ -45,11 +45,11 @@
 // can be C or Java frames, and the Java frames can be interpreted or
 // compiled.  In contrast, vframes represent source-level activations,
 // so that one physical frame can correspond to multiple source level
 // frames because of inlining.
 
-class frame VALUE_OBJ_CLASS_SPEC {
+class frame {
  private:
   // Instance variables:
   intptr_t* _sp; // stack pointer (from Thread::last_Java_sp)
   address   _pc; // program counter (the next instruction after the call)
 

@@ -424,11 +424,11 @@
 
 };
 
 #ifndef PRODUCT
 // A simple class to describe a location on the stack
-class FrameValue VALUE_OBJ_CLASS_SPEC {
+class FrameValue {
  public:
   intptr_t* location;
   char* description;
   int owner;
   int priority;
< prev index next >