+2015-02-20 Aldy Hernandez <aldyh@redhat.com>
+
+ PR debug/58123
+ * gimplify.c (gimplify_expr): Prefer location of TRY_FINALLY_EXPR
+ over input_location.
+
2015-02-20 Bernd Schmidt <bernds@codesourcery.com>
* tree-streamer-in.c (unpack_ts_decl_common_value_fields,
TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
? GIMPLE_TRY_FINALLY
: GIMPLE_TRY_CATCH);
- if (LOCATION_LOCUS (saved_location) != UNKNOWN_LOCATION)
- gimple_set_location (try_, saved_location);
- else
+ if (EXPR_HAS_LOCATION (save_expr))
gimple_set_location (try_, EXPR_LOCATION (save_expr));
+ else if (LOCATION_LOCUS (saved_location) != UNKNOWN_LOCATION)
+ gimple_set_location (try_, saved_location);
if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
gimple_try_set_catch_is_cleanup (try_,
TRY_CATCH_IS_CLEANUP (*expr_p));
+2015-02-20 Aldy Hernandez <aldyh@redhat.com>
+
+ PR debug/58123
+ * g++.dg/debug/dwarf2/deallocator.C: Adjust for correct try
+ location.
+ * g++.dg/gcov/gcov-2.C: Likewise.
+
2015-02-20 Richard Biener <rguenther@suse.de>
PR tree-optimization/65136
return;
}
// { dg-final { scan-assembler "deallocator.C:29" } }
-// { dg-final { scan-assembler "deallocator.C:31" } }
-// { dg-final { scan-assembler "deallocator.C:38" } }
-// { dg-final { scan-assembler "deallocator.C:41" } }
+// { dg-final { scan-assembler "deallocator.C:24" } }
+// { dg-final { scan-assembler "deallocator.C:34" } }
+// { dg-final { scan-assembler "deallocator.C:21" } }
void foo()
{
- C c; /* count(1) */
+ C c; /* count(2) */
c.seti (1); /* count(1) */
}
--- /dev/null
+// { dg-do compile }
+// { dg-options "-fdump-tree-gimple-lineno" }
+
+// Test that the TRY block's location is the definition of "C a".
+
+class C {
+public:
+ C() {}
+ ~C() {}
+ int m() { return 0; }
+};
+int main() {
+ C a;
+ return a.m();
+}
+
+// { dg-final { scan-tree-dump-times "pr58123.C:13\.6\] try" 1 "gimple" } }
+// { dg-final { cleanup-tree-dump "gimple" } }