On 05/26/2016 02:44 PM, Marek Polacek wrote:
+         if (gimple_code (stmt) == GIMPLE_TRY)
            {
+             /* A compiler-generated cleanup or a user-written try block.
+                Try to get the first statement in its try-block, for better
+                location.  */
+             if ((seq = gimple_try_eval (stmt)))
+               stmt = gimple_seq_first_stmt (seq);

Should this loop? If there are two variables declared, do we get two try blocks?

Jason

Reply via email to