diff src/share/vm/classfile/classFileParser.cpp @ 20528:f0bedf980c65

Merge
author asaha
date Tue, 16 Sep 2014 13:55:38 -0700
parents 8cb56c8cb30d 47e3110c47e8
children 8e15758b2e94
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileParser.cpp	Mon Sep 15 16:39:00 2014 -0400
+++ b/src/share/vm/classfile/classFileParser.cpp	Tue Sep 16 13:55:38 2014 -0700
@@ -4142,8 +4142,8 @@
     }
 
     // Allocate mirror and initialize static fields
-    java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
-
+    java_lang_Class::create_mirror(this_klass, class_loader, protection_domain,
+                                   CHECK_(nullHandle));
 
     // Generate any default methods - default methods are interface methods
     // that have a default implementation.  This is new with Lambda project.