@@ -3310,22 +3310,11 @@ mini_method_compile (MonoMethod *method, guint32 opts, JitFlags flags, int parts
33103310 return cfg ;
33113311 }
33123312
3313- {
3314- g_print ("START converting %s%s%s%smethod %s\n" , COMPILE_LLVM (cfg ) ? "llvm " : "" , cfg -> gsharedvt ? "gsharedvt " : "" , (cfg -> gshared && !cfg -> gsharedvt ) ? "gshared " : "" , cfg -> interp_entry_only ? "interp only " : "" , method_name );
3315- if (strstr (method_name , "W& Program:AccessBox" ) != NULL ) {
3316- printf ("blaps\n" );
3317- }
3318- }
3319-
33203313 header = cfg -> header = mono_method_get_header_checked (cfg -> method , cfg -> error );
33213314 if (!header ) {
33223315 mono_cfg_set_exception (cfg , MONO_EXCEPTION_MONO_ERROR );
33233316 if (MONO_METHOD_COMPILE_END_ENABLED ())
33243317 MONO_PROBE_METHOD_COMPILE_END (method , FALSE);
3325- g_print ("NO HEADER, returning, %s\n" , method_name );
3326- if (strstr (method_name , "AccessBox<W_REF>" ) != 0 ) {
3327- printf ("oops\n" );
3328- }
33293318 return cfg ;
33303319 }
33313320
@@ -3474,10 +3463,10 @@ mini_method_compile (MonoMethod *method, guint32 opts, JitFlags flags, int parts
34743463 cfg -> intvars = (guint16 * )mono_mempool_alloc0 (cfg -> mempool , sizeof (guint16 ) * STACK_MAX * header -> max_stack );
34753464
34763465 if (cfg -> verbose_level > 0 ) {
3477- char * v_method_name ;
3466+ char * method_name ;
34783467
3479- v_method_name = mono_method_get_full_name (method );
3480- g_print ("converting %s%s%s%smethod %s\n" , COMPILE_LLVM (cfg ) ? "llvm " : "" , cfg -> gsharedvt ? "gsharedvt " : "" , (cfg -> gshared && !cfg -> gsharedvt ) ? "gshared " : "" , cfg -> interp_entry_only ? "interp only " : "" , v_method_name );
3468+ method_name = mono_method_get_full_name (method );
3469+ g_print ("converting %s%s%s%smethod %s\n" , COMPILE_LLVM (cfg ) ? "llvm " : "" , cfg -> gsharedvt ? "gsharedvt " : "" , (cfg -> gshared && !cfg -> gsharedvt ) ? "gshared " : "" , cfg -> interp_entry_only ? "interp only " : "" , method_name );
34813470 /*
34823471 if (COMPILE_LLVM (cfg))
34833472 g_print ("converting llvm method %s\n", method_name = mono_method_full_name (method, TRUE));
@@ -3488,7 +3477,7 @@ mini_method_compile (MonoMethod *method, guint32 opts, JitFlags flags, int parts
34883477 else
34893478 g_print ("converting method %s\n", method_name = mono_method_full_name (method, TRUE));
34903479 */
3491- g_free (v_method_name );
3480+ g_free (method_name );
34923481 }
34933482
34943483 if (cfg -> opt & MONO_OPT_ABCREM )
0 commit comments