hotspot/src/share/vm/oops/oop.psgc.inline.hpp
changeset 13728 882756847a04
parent 7397 5b173b4ca846
child 13952 e3cf184080bc
--- a/hotspot/src/share/vm/oops/oop.psgc.inline.hpp	Fri Aug 31 16:39:35 2012 -0700
+++ b/hotspot/src/share/vm/oops/oop.psgc.inline.hpp	Sat Sep 01 13:25:18 2012 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -34,10 +34,10 @@
 // ParallelScavengeHeap methods
 
 inline void oopDesc::push_contents(PSPromotionManager* pm) {
-  Klass* klass = blueprint();
-  if (!klass->oop_is_typeArray()) {
+  Klass* k = klass();
+  if (!k->oop_is_typeArray()) {
     // It might contain oops beyond the header, so take the virtual call.
-    klass->oop_push_contents(pm, this);
+    k->oop_push_contents(pm, this);
   }
   // Else skip it.  The typeArrayKlass in the header never needs scavenging.
 }