hotspot/src/share/vm/ci/ciInstanceKlass.cpp
changeset 20017 81eba62e9048
parent 17383 3665c0901a0d
child 20692 65021f70c2fc
--- a/hotspot/src/share/vm/ci/ciInstanceKlass.cpp	Tue Sep 17 23:12:27 2013 +0200
+++ b/hotspot/src/share/vm/ci/ciInstanceKlass.cpp	Fri Sep 13 22:38:02 2013 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2013, 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
@@ -522,8 +522,7 @@
 
   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
     if (fs.access_flags().is_static())  continue;
-    fieldDescriptor fd;
-    fd.initialize(k, fs.index());
+    fieldDescriptor& fd = fs.field_descriptor();
     ciField* field = new (arena) ciField(&fd);
     fields->append(field);
   }