summaryrefslogtreecommitdiff
path: root/gcc/ipa-type-escape-analysis.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ipa-type-escape-analysis.c')
-rw-r--r--gcc/ipa-type-escape-analysis.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ipa-type-escape-analysis.c b/gcc/ipa-type-escape-analysis.c
index 3ce6763558b..681aaa6ec11 100644
--- a/gcc/ipa-type-escape-analysis.c
+++ b/gcc/ipa-type-escape-analysis.c
@@ -131,7 +131,7 @@ fix_escaping_types_in_set(ptrset_t &types)
const bool equal = structuralEquality.equal(type_esc, type_non);
if (!equal) continue;
- //log("recalulating %s == %s\n", type_esc_name.c_str(), type_non_name.c_str());
+ log("recalulating %s == %s\n", type_esc_name.c_str(), type_non_name.c_str());
fixed_point_reached = false;
// Add incomplete to escaping
// delete incomplete from non_escaping
@@ -158,10 +158,10 @@ collect_types()
ptrset_t types = collector.get_pointer_set();
// what if we had 2 sets here
// points_to_record and not_points_to_record
- GimpleEscaper gimpleEscaper(types);
- gimpleEscaper.walk();
- if (flag_print_escape_analysis) gimpleEscaper.print_reasons();
- ptrset_t escaping = gimpleEscaper.get_sets();
+ //GimpleEscaper gimpleEscaper(types);
+ //gimpleEscaper.walk();
+ //if (flag_print_escape_analysis) gimpleEscaper.print_reasons();
+ //ptrset_t escaping = gimpleEscaper.get_sets();
GimpleCaster caster(types);
caster.walk();
if (flag_print_cast_analysis) caster.print_reasons();