changeset 9191:700f6a63763a

removed unused has_debug_info parameter
author Doug Simon <doug.simon@oracle.com>
date Fri, 19 Apr 2013 10:48:36 +0200
parents 0331f7512be2
children 123991e4fbd8
files src/share/vm/graal/graalCodeInstaller.cpp src/share/vm/graal/graalEnv.cpp src/share/vm/graal/graalEnv.hpp
diffstat 3 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/graal/graalCodeInstaller.cpp	Thu Apr 18 16:25:08 2013 +0200
+++ b/src/share/vm/graal/graalCodeInstaller.cpp	Fri Apr 19 10:48:36 2013 +0200
@@ -348,7 +348,7 @@
   GrowableArray<jlong>* leaf_graph_ids = get_leaf_graph_ids(comp_result);
 
   result = GraalEnv::register_method(method, nm, entry_bci, &_offsets, _custom_stack_area_offset, &buffer, stack_slots, _debug_recorder->_oopmaps, &_exception_handler_table,
-    GraalCompiler::instance(), _debug_recorder, _dependencies, NULL, -1, true, false, leaf_graph_ids, installed_code, triggered_deoptimizations);
+    GraalCompiler::instance(), _debug_recorder, _dependencies, NULL, -1, false, leaf_graph_ids, installed_code, triggered_deoptimizations);
 }
 
 // constructor used to create a stub
--- a/src/share/vm/graal/graalEnv.cpp	Thu Apr 18 16:25:08 2013 +0200
+++ b/src/share/vm/graal/graalEnv.cpp	Fri Apr 19 10:48:36 2013 +0200
@@ -449,7 +449,6 @@
                                 Dependencies* dependencies,
                                 CompileTask* task,
                                 int compile_id,
-                                bool has_debug_info,
                                 bool has_unsafe_access,
                                 GrowableArray<jlong>* leaf_graph_ids,
                                 Handle installed_code,
--- a/src/share/vm/graal/graalEnv.hpp	Thu Apr 18 16:25:08 2013 +0200
+++ b/src/share/vm/graal/graalEnv.hpp	Fri Apr 19 10:48:36 2013 +0200
@@ -143,7 +143,6 @@
                        Dependencies*             dependencies,
                        CompileTask*              task,
                        int                       compile_id,
-                       bool                      has_debug_info,
                        bool                      has_unsafe_access,
                        GrowableArray<jlong>*     leaf_graph_ids,
                        Handle                    installed_code,