< prev index next >

src/hotspot/share/opto/replacednodes.hpp

Print this page

        

@@ -39,13 +39,13 @@
 // GraphKit::replace_in_map() is called, a new pair of nodes is pushed
 // on the list of replaced nodes. When control flow paths merge, their
 // replaced nodes are also merged. When parsing exits a method to
 // return to a caller, the replaced nodes on the exit path are used to
 // update the caller's map.
-class ReplacedNodes VALUE_OBJ_CLASS_SPEC {
+class ReplacedNodes {
  private:
-  class ReplacedNode VALUE_OBJ_CLASS_SPEC {
+  class ReplacedNode {
   private:
     Node* _initial;
     Node* _improved;
   public:
     ReplacedNode() : _initial(NULL), _improved(NULL) {}
< prev index next >