< prev index next >

src/hotspot/share/asm/codeBuffer.hpp

Print this page

        

@@ -75,11 +75,11 @@
 };
 
 // This class represents a stream of code and associated relocations.
 // There are a few in each CodeBuffer.
 // They are filled concurrently, and concatenated at the end.
-class CodeSection VALUE_OBJ_CLASS_SPEC {
+class CodeSection {
   friend class CodeBuffer;
  public:
   typedef int csize_t;  // code size type; would be size_t except for history
 
  private:

@@ -244,11 +244,11 @@
   void print(const char* name);
 #endif //PRODUCT
 };
 
 class CodeString;
-class CodeStrings VALUE_OBJ_CLASS_SPEC {
+class CodeStrings {
 private:
 #ifndef PRODUCT
   CodeString* _strings;
 #ifdef ASSERT
   // Becomes true after copy-out, forbids further use.
< prev index next >