]> gcc.gnu.org Git - gcc.git/commitdiff
function.c (identify_blocks): Fix thinko when setting the block number for NOTE_INSN_...
authorJeffrey A Law <law@cygnus.com>
Mon, 18 May 1998 21:39:43 +0000 (21:39 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 18 May 1998 21:39:43 +0000 (15:39 -0600)
        * function.c (identify_blocks): Fix thinko when setting the
        block number for NOTE_INSN_BLOCK_END.

From-SVN: r19857

gcc/ChangeLog
gcc/function.c

index da01591b9caf018bcf04466202ff897243646d86..6aa4a84645465bdb44d3524384510d2b308be6f4 100644 (file)
@@ -1,3 +1,8 @@
+Mon May 18 22:37:33 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * function.c (identify_blocks): Fix thinko when setting the
+       block number for NOTE_INSN_BLOCK_END.
+
 Mon May 18 15:30:42 1998  Nick Clifton  <nickc@cygnus.com>
 
        * config/v850/lib1funcs.asm: Add .text pseudo op to start of
index 459d55ff1bfc3c2901568bf0ee0f79df6291b799..d2cd64eb092e121c925b6d796149cdb0bc6cb9db 100644 (file)
@@ -5133,8 +5133,8 @@ identify_blocks (block, insns)
          }
        if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
          {
-           current_block_number = block_stack[--depth];
            NOTE_BLOCK_NUMBER (insn) = current_block_number;
+           current_block_number = block_stack[--depth];
          }
       }
 
This page took 0.069845 seconds and 5 git commands to generate.