trans.c (Handled_Sequence_Of_Statements_to_gnu): Set the SLOC of the node on the...
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 5 Nov 2014 18:52:07 +0000 (18:52 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 5 Nov 2014 18:52:07 +0000 (18:52 +0000)
* gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu): Set
the SLOC of the node on the call to set_jmpbuf_address_soft emitted
on block entry with SJLJ.

From-SVN: r217152

gcc/ada/ChangeLog
gcc/ada/gcc-interface/trans.c

index 916715ad62e1c9c29a17657f2a1fa1c37654c684..7e8e9a127bf0958a96c9295496e8a126529a99cb 100644 (file)
@@ -1,3 +1,9 @@
+2014-11-05  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu): Set
+       the SLOC of the node on the call to set_jmpbuf_address_soft emitted
+       on block entry with SJLJ.
+
 2014-11-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc-interface/utils.c (create_subprog_decl): Move code dealing with
index 258b79cbb52712f653a1b7facab15b801abc7640..05b81ef75fb5dbae1bf5977e4f10a6ca95befd3f 100644 (file)
@@ -4629,9 +4629,13 @@ Handled_Sequence_Of_Statements_to_gnu (Node_Id gnat_node)
   start_stmt_group ();
 
   if (setjmp_longjmp)
-    add_stmt (build_call_n_expr (set_jmpbuf_decl, 1,
-                                build_unary_op (ADDR_EXPR, NULL_TREE,
-                                                gnu_jmpbuf_decl)));
+    {
+      gnu_expr = build_call_n_expr (set_jmpbuf_decl, 1,
+                                   build_unary_op (ADDR_EXPR, NULL_TREE,
+                                                   gnu_jmpbuf_decl));
+      set_expr_location_from_node (gnu_expr, gnat_node);
+      add_stmt (gnu_expr);
+    }
 
   if (Present (First_Real_Statement (gnat_node)))
     process_decls (Statements (gnat_node), Empty,