Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Aleksey Kliger (λgeek) <alklig@microsoft.com>
  • Loading branch information
akoeplinger and lambdageek authored Dec 1, 2021
commit c5b78ec149c968f70bc8212960f3e87456fc7b03
4 changes: 2 additions & 2 deletions src/mono/mono/mini/aot-compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -6699,7 +6699,7 @@ emit_method_code (MonoAotCompile *acfg, MonoCompile *cfg)

// Enable to force dedup to link these symbols and forbid compiling
// in duplicated code. This is an "assert when linking if broken" trick.
#if FALSE
#if 0
if (mono_aot_can_dedup (method) && (acfg->aot_opts.dedup || acfg->aot_opts.dedup_include))
debug_sym = mono_aot_get_mangled_method_name (method);
else
Expand All @@ -6713,7 +6713,7 @@ emit_method_code (MonoAotCompile *acfg, MonoCompile *cfg)

// Enable to force dedup to link these symbols and forbid compiling
// in duplicated code. This is an "assert when linking if broken" trick.
#if FALSE
#if 0
if (mono_aot_can_dedup (method) && (acfg->aot_opts.dedup || acfg->aot_opts.dedup_include))
emit_global_inner (acfg, debug_sym, TRUE);
else
Expand Down