diff src/share/vm/graal/graalJavaAccess.cpp @ 3706:a59727158259

hide HotSpotMethodResolvedImpl.javaMirror field in debuggers
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 02 Dec 2011 13:31:00 +0100
parents 0e3ec0a4eda4
children 319860ae697a
line wrap: on
line diff
--- a/src/share/vm/graal/graalJavaAccess.cpp	Thu Dec 01 15:04:28 2011 +0100
+++ b/src/share/vm/graal/graalJavaAccess.cpp	Fri Dec 02 13:31:00 2011 +0100
@@ -28,7 +28,7 @@
 // This function is similar to javaClasses.cpp, it computes the field offset of a (static or instance) field.
 // It looks up the name and signature symbols without creating new ones, all the symbols of these classes need to be already loaded.
 
-static void compute_offset(int &dest_offset, klassOop klass_oop, const char* name, const char* signature, bool static_field) {
+void compute_offset(int &dest_offset, klassOop klass_oop, const char* name, const char* signature, bool static_field) {
   Symbol* name_symbol = SymbolTable::probe(name, (int)strlen(name));
   Symbol* signature_symbol = SymbolTable::probe(signature, (int)strlen(signature));
 #ifdef DEBUG